r1461 - in trunk: . tutti-service tutti-service/src/test/java/fr/ifremer/tutti/service/report tutti-service/src/test/resources/pupitri tutti-service/src/test/resources/report/2013.12.05 tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/images tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls tutt
Author: tchemit Date: 2013-12-10 22:47:43 +0100 (Tue, 10 Dec 2013) New Revision: 1461 Url: http://forge.codelutin.com/projects/tutti/repository/revisions/1461 Log: add misggin license headers + svn properties Modified: trunk/pom.xml trunk/tutti-service/pom.xml trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ReportServiceTest.java trunk/tutti-service/src/test/resources/pupitri/ano-3898.car trunk/tutti-service/src/test/resources/pupitri/ano-3898.tnk trunk/tutti-service/src/test/resources/pupitri/ano-3898.tuttiProtocol trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/common.css trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/images/logo-ifremer.PNG trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/common.js trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/messages.js trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/common.properties trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/reports/controle_data_allegro_campagne.rptdesign trunk/tutti-service/src/test/resources/report/2013.12.05/version.appup trunk/tutti-service/src/test/resources/report/exportCruise/accidentalCatch.csv trunk/tutti-service/src/test/resources/report/exportCruise/catch.csv trunk/tutti-service/src/test/resources/report/exportCruise/gearCaracteristics.csv trunk/tutti-service/src/test/resources/report/exportCruise/individualObservation.csv trunk/tutti-service/src/test/resources/report/exportCruise/marineLitter.csv trunk/tutti-service/src/test/resources/report/exportCruise/operation.csv trunk/tutti-service/src/test/resources/report/exportCruise/parameter.csv trunk/tutti-service/src/test/resources/report/exportCruise/species.csv trunk/tutti-service/src/test/resources/report/exportCruise/survey.csv trunk/tutti-ui-swing/src/main/assembly/full/report/version.appup trunk/tutti-ui-swing/src/main/help/en/report.html trunk/tutti-ui-swing/src/main/help/fr/report.html Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/pom.xml 2013-12-10 21:47:43 UTC (rev 1461) @@ -126,14 +126,11 @@ <hibernateVersion>3.6.10.Final</hibernateVersion> <jaxxVersion>2.6</jaxxVersion> <swingXVersion>1.6.4</swingXVersion> - <xworkVersion>2.3.15.1</xworkVersion> <slf4jVersion>1.7.5</slf4jVersion> <adagioVersion>3.4.1</adagioVersion> <bluecoveVersion>2.1.0</bluecoveVersion> - <spring.version>3.2.3.RELEASE</spring.version> - <slf4j.version>1.6.1</slf4j.version> - <hsqldb.version>2.2.9</hsqldb.version> - <jdbc.hsqldb.version>1.8.0.10</jdbc.hsqldb.version> + <springVersion>3.2.3.RELEASE</springVersion> + <hsqldbVersion>1.8.0.10</hsqldbVersion> <i18n.bundles>fr_FR,en_GB</i18n.bundles> <i18n.silent>true</i18n.silent> @@ -152,10 +149,10 @@ <jreVersion>1.7.45</jreVersion> <!-- Last tutti db version --> - <dbVersion>2013.11.29</dbVersion> + <dbVersion>2013.08.22</dbVersion> <!-- Last tutti report version --> - <reportVersion>2013.12.10</reportVersion> + <reportVersion>2013.12.05</reportVersion> </properties> @@ -290,7 +287,7 @@ <dependency> <groupId>org.apache.struts.xwork</groupId> <artifactId>xwork-core</artifactId> - <version>${xworkVersion}</version> + <version>2.3.15.1</version> </dependency> <!-- JAXX --> @@ -361,31 +358,31 @@ <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> - <version>${spring.version}</version> + <version>${springVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> - <version>${spring.version}</version> + <version>${springVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> - <version>${spring.version}</version> + <version>${springVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> - <version>${spring.version}</version> + <version>${springVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> - <version>${spring.version}</version> + <version>${springVersion}</version> <scope>provided</scope> </dependency> @@ -401,13 +398,8 @@ <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> - <version>${jdbc.hsqldb.version}</version> + <version>${hsqldbVersion}</version> </dependency> - <dependency> - <groupId>org.hsqldb</groupId> - <artifactId>hsqldb</artifactId> - <version>${hsqldb.version}</version> - </dependency> <!-- Yaml --> <dependency> @@ -458,7 +450,7 @@ <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> - <version>${spring.version}</version> + <version>${springVersion}</version> <scope>test</scope> </dependency> <dependency> @@ -489,7 +481,7 @@ <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> - <version>${jdbc.hsqldb.version}</version> + <version>${hsqldbVersion}</version> </dependency> <dependency> <groupId>org.hibernate</groupId> Modified: trunk/tutti-service/pom.xml =================================================================== --- trunk/tutti-service/pom.xml 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-service/pom.xml 2013-12-10 21:47:43 UTC (rev 1461) @@ -41,335 +41,6 @@ <dependencies> - <!--<dependency>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.birt.runtime</artifactId>--> - <!--<version>${birtVersion}</version>--> - <!--<exclusions>--> - <!--<exclusion>--> - <!--<groupId>milyn</groupId>--> - <!--<artifactId>flute</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.milyn</groupId>--> - <!--<artifactId>flute</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>commons-cli</groupId>--> - <!--<artifactId>commons-cli</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.hsqldb.dbdefinition--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.mysql</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.ibm.informix--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.ibm.db2.luw--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.hsqldb</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>--> - <!--org.eclipse.datatools.enablement.msft.sqlserver.dbdefinition--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>--> - <!--org.eclipse.datatools.enablement.ibm.informix.dbdefinition--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.postgresql</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>--> - <!--org.eclipse.datatools.enablement.ibm.db2.luw.dbdefinition--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>--> - <!--org.eclipse.datatools.connectivity.apache.derby.dbdefinition--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.oracle</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.msft.sqlserver--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.oracle.dbdefinition--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.mysql.dbdefinition--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>--> - <!--org.eclipse.datatools.enablement.postgresql.dbdefinition--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.modelbase.derby</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.connectivity.apache.derby--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.connectivity.console.profile--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.connectivity.oda.design--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.oda.ws</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.modelbase.sql</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.modelbase.sql.query</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>--> - <!--org.eclipse.datatools.connectivity.dbdefinition.genericJDBC--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.enablement.oda.xml</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.connectivity.db.generic--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.modelbase.dbdefinition--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.connectivity.oda.profile--> - <!--</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.datatools.connectivity.sqm.core</artifactId>--> - <!--</exclusion>--> - - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.emf.ecore.change</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.core.expressions</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.emf</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.core.resources</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.core.filesystem</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.core.contenttype</artifactId>--> - <!--</exclusion>--> - - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.apache.commons.logging</artifactId>--> - <!--</exclusion>--> - - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.pdf</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.dom.svg</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.dom</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.css</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.ext.awt</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.transcoder</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.util</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.xml</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.orbit.mongodb</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.commons.codec</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.bridge</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.parser</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.util.gui</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.batik.svggen</artifactId>--> - <!--</exclusion>--> - - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.equinox.app</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.equinox.preferences</artifactId>--> - <!--</exclusion>--> - - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.osgi.services</artifactId>--> - <!--</exclusion>--> - - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.xerces</artifactId>--> - <!--</exclusion>--> - - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>derby</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.xml.resolver</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.apache.xml.serializer</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.w3c.dom.svg</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.w3c.css.sac</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>javax.wsdl</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.w3c.dom.smil</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>javax.xml.stream</artifactId>--> - <!--</exclusion>--> - <!--<!–exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>org.mozilla.javascript</artifactId>--> - <!--</exclusion–>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>Tidy</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime.3_7_1</groupId>--> - <!--<artifactId>com.lowagie.text</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>com.ibm.icu</artifactId>--> - <!--</exclusion>--> - - <!--<exclusion>--> - <!--<groupId>org.eclipse.birt.runtime</groupId>--> - <!--<artifactId>org.eclipse.update.configurator</artifactId>--> - <!--</exclusion>--> - - <!--<exclusion>--> - <!--<groupId>org.apache.poi</groupId>--> - <!--<artifactId>poi</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.apache.poi</groupId>--> - <!--<artifactId>poi-ooxml</artifactId>--> - <!--</exclusion>--> - <!--<exclusion>--> - <!--<groupId>org.apache.poi</groupId>--> - <!--<artifactId>poi-ooxml-schemas</artifactId>--> - <!--</exclusion>--> - <!--</exclusions>--> - <!--</dependency>--> - <!-- Sibling dependencies --> <dependency> <groupId>${project.groupId}</groupId> Modified: trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ReportServiceTest.java =================================================================== --- trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ReportServiceTest.java 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ReportServiceTest.java 2013-12-10 21:47:43 UTC (rev 1461) @@ -1,5 +1,29 @@ package fr.ifremer.tutti.service.report; +/* + * #%L + * Tutti :: Service + * $Id$ + * $HeadURL$ + * %% + * Copyright (C) 2012 - 2013 Ifremer + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import fr.ifremer.shared.application.ApplicationIOUtil; import fr.ifremer.tutti.persistence.ProgressionModel; import fr.ifremer.tutti.persistence.entities.data.FishingOperation; Property changes on: trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ReportServiceTest.java ___________________________________________________________________ Modified: svn:keywords - Author Date Id Revision + Author Date Id Revision HeadURL Modified: trunk/tutti-service/src/test/resources/pupitri/ano-3898.car =================================================================== --- trunk/tutti-service/src/test/resources/pupitri/ano-3898.car 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-service/src/test/resources/pupitri/ano-3898.car 2013-12-10 21:47:43 UTC (rev 1461) @@ -1,381 +1,381 @@ -$TSMES,27/11/13,09:12:04.612,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0015.6, -$TSMES,27/11/13,09:13:21.994,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.9, -$TSMES,27/11/13,09:15:12.588,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0021.4, -$TSMES,27/11/13,09:15:58.396,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0017.9, -$TSMES,27/11/13,09:17:11.714,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0017.2, -$TSMES,27/11/13,09:17:40.272,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0021.1, -$TSMES,27/11/13,09:18:48.818,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0018.0, -$TSMES,27/11/13,09:19:33.335,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0016.6, -$TSMES,27/11/13,09:21:16.442,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0015.8, -$TSMES,27/11/13,09:21:40.776,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0022.8, -$TSMES,27/11/13,09:22:45.945,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0016.1, -$TSMES,27/11/13,09:26:51.656,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0019.1, -$TSMES,27/11/13,09:27:53.133,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0016.5, -$TSMES,27/11/13,09:28:17.445,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0018.4, -$TSMES,27/11/13,09:31:22.362,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0014.6, -$TSMES,27/11/13,09:31:45.650,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.4, -$TSMES,27/11/13,09:32:05.512,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0023.0, -$TSMES,27/11/13,09:33:00.869,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0014.2, -$TSMES,27/11/13,09:33:24.472,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0012.8, -$TSMES,27/11/13,09:34:25.343,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0015.8, -$TSMES,27/11/13,09:34:44.541,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0021.0, -$TSMES,27/11/13,09:36:02.174,BLCAR, 0,A,1,001,NEPH-NOR,0,VAT,0006.3, -$TSMES,27/11/13,09:36:30.632,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0024.1, -$TSMES,27/11/13,09:37:25.749,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0017.5, -$TSMES,27/11/13,09:37:47.056,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.3, -$TSMES,27/11/13,09:38:44.513,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0018.5, -$TSMES,27/11/13,09:40:34.621,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0015.8, -$TSMES,27/11/13,09:41:28.855,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0011.3, -$TSMES,27/11/13,09:42:39.349,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0016.7, -$TSMES,27/11/13,09:43:01.405,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0020.2, -$TSMES,27/11/13,09:43:21.779,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0018.7, -$TSMES,27/11/13,09:44:16.028,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0025.7, -$TSMES,27/11/13,09:44:39.643,BLCAR, 0,A,1,002,MERL-MCC,0,VAT,0017.6, -$TSMES,27/11/13,09:45:41.310,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0015.9, -$TSMES,27/11/13,09:46:04.181,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0018.0, -$TSMES,27/11/13,09:47:00.822,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0018.1, -$TSMES,27/11/13,09:47:25.806,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.0, -$TSMES,27/11/13,09:48:25.059,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0013.1, -$TSMES,27/11/13,09:48:47.779,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0016.4, -$TSMES,27/11/13,09:50:25.036,BLCAR,-1,A,1,002,CLUP-HAR,0,VAT,-001.8, -$TSMES,27/11/13,09:51:02.085,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0016.5, -$TSMES,27/11/13,09:52:08.332,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0016.2, -$TSMES,27/11/13,09:52:34.644,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0020.6, -$TSMES,27/11/13,09:52:57.540,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0016.1, -$TSMES,27/11/13,09:53:31.676,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0018.3, -$TSMES,27/11/13,09:54:07.781,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0021.0, -$TSMES,27/11/13,09:55:10.374,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0018.4, -$TSMES,27/11/13,09:55:35.859,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.1, -$TSMES,27/11/13,09:56:02.545,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0014.2, -$TSMES,27/11/13,09:57:06.900,BLCAR, 0,A,1,002,EUTR-GUR,0,VAT,0013.5, -$TSMES,27/11/13,09:57:28.821,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0018.3, -$TSMES,27/11/13,09:58:35.607,BLCAR, 0,A,1,001,MERL-MNG,0,VAT,0009.9, -$TSMES,27/11/13,09:59:17.462,BLCAR, 0,A,1,001,EUTR-GUR,0,VAT,0006.9, -$TSMES,27/11/13,10:00:18.404,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0023.0, -$TSMES,27/11/13,10:00:45.111,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0014.8, -$TSMES,27/11/13,10:01:59.945,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0019.3, -$TSMES,27/11/13,10:02:23.121,BLCAR, 0,A,1,002,NEPH-NOR,0,VAT,0010.2, -$TSMES,27/11/13,10:03:37.632,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0014.0, -$TSMES,27/11/13,10:04:06.529,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0015.1, -$TSMES,27/11/13,10:05:06.144,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0014.0, -$TSMES,27/11/13,10:05:36.831,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0020.3, -$TSMES,27/11/13,10:06:02.527,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0012.3, -$TSMES,27/11/13,10:07:12.015,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0023.7, -$TSMES,27/11/13,10:07:44.295,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.2, -$TSMES,27/11/13,10:08:22.400,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0017.6, -$TSMES,27/11/13,10:09:24.404,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0022.5, -$TSMES,27/11/13,10:09:45.542,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0017.7, -$TSMES,27/11/13,10:10:07.635,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0021.8, -$TSMES,27/11/13,10:10:38.750,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0011.2, -$TSMES,27/11/13,10:11:05.784,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0015.9, -$TSMES,27/11/13,10:11:34.634,BLCAR, 0,A,1,002,CONG-CON,0,VAT,0001.0, -$TSMES,27/11/13,10:12:40.011,BLCAR,-1,A,1,002,RAJA-CLA,0,VAT,-000.1, -$TSMES,27/11/13,10:13:08.077,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0014.8, -$TSMES,27/11/13,10:13:35.173,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0012.2, -$TSMES,27/11/13,10:13:56.456,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0020.3, -$TSMES,27/11/13,10:14:43.589,BLCAR, 0,A,1,001,HIPP-PLA,0,VAT,0002.9, -$TSMES,27/11/13,10:15:33.096,BLCAR, 0,A,1,001,MELA-AEG,P,VAT,0001.4, -$TSMES,27/11/13,10:15:59.750,BLCAR, 0,A,1,002,MELA-AEG,G,VAT,0007.8, -$TSMES,27/11/13,10:16:28.073,BLCAR, 0,A,1,001,GADU-MOR,0,VAT,0000.1, -$TSMES,27/11/13,10:17:04.293,BLCAR, 0,A,1,001,MERL-MNG,0,VAT,0007.1, -$TSMES,27/11/13,10:17:35.174,BLCAR, 0,A,1,001,TRIS-MIN,0,VAT,0006.0, -$TSMES,27/11/13,10:18:09.419,BLCAR, 0,A,1,001,MERL-MNG,P,VAT,0007.4, -$TSMES,27/11/13,10:18:41.202,BLCAR, 0,A,1,001,MERL-MNG,0,VAT,0000.4, -$TSMES,27/11/13,10:19:05.719,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0007.7, -$TSMES,27/11/13,10:19:50.270,BLCAR, 0,A,1,001,HIPP-PLA,0,VAT,0002.7, -$TSMES,27/11/13,10:20:20.642,BLCAR, 0,A,1,002,MICR-POU,0,VAT,0010.7, -$TSMES,27/11/13,10:20:48.724,BLCAR, 0,A,1,001,LOLI-FOR,0,VAT,0002.2, -$TSMES,27/11/13,10:21:10.768,BLCAR, 0,A,1,001,EUTR-GUR,0,VAT,0004.7, -$TSMES,27/11/13,10:21:41.022,BLCAR, 0,A,1,001,NEPH-NOR,0,VAT,0006.3, -$TSMES,27/11/13,10:22:42.411,BLCAR, 0,A,1,001,ARGE-SPH,0,VAT,0000.1, -$TSMES,27/11/13,10:23:25.537,BLCAR, 0,A,1,001,TRAC-TRU,0,VAT,0000.1, -$TSMES,27/11/13,10:24:06.077,BLCAR, 0,A,1,001,SCOM-SCO,0,VAT,0000.4, -$TSMES,27/11/13,10:24:34.127,BLCAR, 0,A,1,001,MAUR-MUE,0,VAT,0000.1, -$TSMES,27/11/13,10:25:23.660,BLCAR, 0,A,1,001,LEPI-WHI,0,VAT,0003.1, -$TSMES,27/11/13,10:25:47.598,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0005.3, -$TSMES,27/11/13,10:26:12.602,BLCAR, 0,A,1,002,LOPH-PIS,0,VAT,0012.0, -$TSMES,27/11/13,10:26:33.530,BLCAR, 0,A,1,003,ELED-CIR,0,VAT,0001.4, -$TSMES,27/11/13,10:27:34.508,BLCAR, 0,A,1,003,ROSS-MAC,0,VAT,0000.1, -$TSMES,27/11/13,10:28:17.554,BLCAR, 0,A,1,001,ENCH-CIM,0,VAT,0000.8, -$TSMES,27/11/13,10:28:57.935,BLCAR, 0,A,1,001,LIMA-LIM,0,VAT,0000.2, -$TSMES,27/11/13,10:29:42.251,BLCAR, 0,A,1,001,CALL-MAC,0,VAT,0000.2, -$TSMES,27/11/13,10:30:09.536,BLCAR, 0,A,1,001,CALL-LYR,0,VAT,0000.8, -$TSMES,27/11/13,10:30:59.437,BLCAR, 0,A,1,001,MICR-VAR,0,VAT,0000.2, -$TSMES,27/11/13,10:31:32.624,BLCAR, 0,A,1,001,SEPI-OLZ,0,VAT,0000.2, -$TSMES,27/11/13,10:31:59.713,BLCAR, 0,A,1,003,LOLI-FOR,P,VAT,0000.1, -$TSMES,27/11/13,10:32:34.851,BLCAR, 0,A,1,003,TODA-EBL,0,VAT,0000.2, -$TSMES,27/11/13,10:33:02.175,BLCAR, 0,A,1,002,MERL-MCC,0,VAT,0013.8, -$TSMES,27/11/13,10:35:38.377,BLCAR, 0,A,1,001,GLYP-CYN,0,VAT,0000.3, -$TSMES,27/11/13,12:04:35.575,BLCAR, 0,R0482,1,001,MERL-MNG,0,VAT,0020.0, -$TSMES,27/11/13,12:06:30.634,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.9, -$TSMES,27/11/13,12:08:42.036,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.3, -$TSMES,27/11/13,12:09:02.786,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0019.2, -$TSMES,27/11/13,12:12:30.199,BLCAR, 0,R0482,1,002,MELA-AEG,0,VAT,0021.9, -$TSMES,27/11/13,12:13:14.543,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0000.0, -$TSMES,27/11/13,12:13:35.465,BLCAR,-1,R0482,1,002,MELA-AEG,0,VAT,-001.4, -$TSMES,27/11/13,12:14:42.156,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0000.9, -$TSMES,27/11/13,12:15:05.319,BLCAR,-1,R0482,1,002,CLUP-HAR,0,VAT,-002.9, -$TSMES,27/11/13,12:16:11.874,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0007.1, -$TSMES,27/11/13,12:16:53.113,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0000.3, -$TSMES,27/11/13,12:19:51.787,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0000.4, -$TSMES,27/11/13,12:20:45.974,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.5, -$TSMES,27/11/13,12:21:08.178,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.2, -$TSMES,27/11/13,12:21:41.969,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0021.3, -$TSMES,27/11/13,12:22:09.619,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0015.2, -$TSMES,27/11/13,12:23:05.053,BLCAR, 0,R0482,1,002,MERL-MNG,P,VAT,0014.7, -$TSMES,27/11/13,12:24:17.176,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0016.4, -$TSMES,27/11/13,12:25:25.163,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.8, -$TSMES,27/11/13,12:27:27.892,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0017.8, -$TSMES,27/11/13,12:27:49.775,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0017.7, -$TSMES,27/11/13,12:28:15.701,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0007.3, -$TSMES,27/11/13,12:32:10.843,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0018.7, -$TSMES,27/11/13,12:34:21.824,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.6, -$TSMES,27/11/13,12:35:28.244,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.9, -$TSMES,27/11/13,12:35:55.232,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0018.6, -$TSMES,27/11/13,12:36:27.381,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.9, -$TSMES,27/11/13,12:37:02.445,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0021.9, -$TSMES,27/11/13,12:38:17.102,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0020.9, -$TSMES,27/11/13,12:38:39.197,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0020.5, -$TSMES,27/11/13,12:39:55.258,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0008.8, -$TSMES,27/11/13,12:41:15.892,BLCAR, 0,R0482,1,001,MELA-AEG,P,VAT,0008.7, -$TSMES,27/11/13,12:41:42.452,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0019.1, -$TSMES,27/11/13,12:43:19.486,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0018.1, -$TSMES,27/11/13,12:44:34.765,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0018.3, -$TSMES,27/11/13,12:45:02.744,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.4, -$TSMES,27/11/13,12:46:42.493,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0020.0, -$TSMES,27/11/13,12:47:10.163,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0021.0, -$TSMES,27/11/13,12:49:31.763,BLCAR,-1,R0482,1,002,MERL-MNG,P,VAT,-002.4, -$TSMES,27/11/13,12:50:05.748,BLCAR,-1,R0482,1,002,MELA-AEG,G,VAT,-000.1, -$TSMES,27/11/13,12:52:27.719,BLCAR,-1,R0482,1,002,MERL-MNG,0,VAT,-000.2, -$TSMES,27/11/13,12:53:38.590,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0006.6, -$TSMES,27/11/13,12:54:05.175,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0034.3, -$TSMES,27/11/13,12:54:57.849,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0039.3, -$TSMES,27/11/13,12:55:38.978,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0005.0, -$TSMES,27/11/13,12:55:58.875,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0038.0, -$TSMES,27/11/13,12:56:58.719,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0039.8, -$TSMES,27/11/13,12:58:00.192,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0040.2, -$TSMES,27/11/13,12:58:59.709,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.0, -$TSMES,27/11/13,13:00:07.669,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0042.2, -$TSMES,27/11/13,13:00:30.038,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0040.7, -$TSMES,27/11/13,13:00:56.621,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0042.0, -$TSMES,27/11/13,13:01:46.953,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0039.7, -$TSMES,27/11/13,13:02:16.623,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0042.7, -$TSMES,27/11/13,13:03:14.387,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0008.3, -$TSMES,27/11/13,13:03:53.935,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0041.8, -$TSMES,27/11/13,13:04:18.682,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.8, -$TSMES,27/11/13,13:04:44.747,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.8, -$TSMES,27/11/13,13:06:33.303,BLCAR, 0,R0482,1,002,TRIS-ESM,0,VAT,0037.5, -$TSMES,27/11/13,13:07:10.083,BLCAR, 0,R0482,1,001,MERL-MNG,0,VAT,0011.8, -$TSMES,27/11/13,13:12:04.520,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0042.3, -$TSMES,27/11/13,13:13:25.402,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.3, -$TSMES,27/11/13,13:13:45.372,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0042.0, -$TSMES,27/11/13,13:14:52.337,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0040.0, -$TSMES,27/11/13,13:16:04.830,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.4, -$TSMES,27/11/13,13:16:47.888,BLCAR, 0,R0482,1,002,MERL-MNG,P,VAT,0041.0, -$TSMES,27/11/13,13:17:10.620,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0045.5, -$TSMES,27/11/13,13:18:21.177,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0041.8, -$TSMES,27/11/13,13:18:46.078,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.1, -$TSMES,27/11/13,13:20:06.454,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0008.4, -$TSMES,27/11/13,13:20:43.587,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0040.2, -$TSMES,27/11/13,13:21:13.460,BLCAR, 0,R0482,1,002,TRIS-ESM,0,VAT,0035.1, -$TSMES,27/11/13,13:21:42.160,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0043.2, -$TSMES,27/11/13,13:22:43.729,BLCAR, 0,R0482,1,002,EUTR-GUR,0,VAT,0036.9, -$TSMES,27/11/13,13:23:05.231,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0040.3, -$TSMES,27/11/13,13:23:34.911,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0040.9, -$TSMES,27/11/13,13:24:11.619,BLCAR, 0,R0482,1,002,MELA-AEG,0,VAT,0038.0, -$TSMES,27/11/13,13:24:31.678,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.6, -$TSMES,27/11/13,13:25:51.665,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0041.5, -$TSMES,27/11/13,13:26:40.759,BLCAR, 0,R0482,1,002,EUTR-GUR,0,VAT,0034.1, -$TSMES,27/11/13,13:27:08.325,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0040.0, -$TSMES,27/11/13,13:27:38.129,BLCAR, 0,R0482,1,002,SCYL-CAN,0,VAT,0036.8, -$TSMES,27/11/13,13:30:07.410,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0040.1, -$TSMES,27/11/13,13:31:10.336,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0008.4, -$TSMES,27/11/13,13:33:25.697,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0042.7, -$TSMES,27/11/13,13:35:13.921,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0028.1, -$TSMES,27/11/13,13:35:34.139,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0040.6, -$TSMES,27/11/13,13:36:54.752,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0041.0, -$TSMES,27/11/13,13:37:51.527,BLCAR, 0,R0482,1,002,MELA-AEG,0,VAT,0039.3, -$TSMES,27/11/13,13:38:19.527,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.1, -$TSMES,27/11/13,13:39:05.751,BLCAR, 0,R0482,1,002,LOPH-PIS,0,VAT,0024.2, -$TSMES,27/11/13,13:39:33.528,BLCAR, 0,R0482,1,002,SCYL-CAN,0,VAT,0024.4, -$TSMES,27/11/13,13:39:55.322,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0037.2, -$TSMES,27/11/13,13:40:29.179,BLCAR, 0,R0482,1,001,MERL-MCC,0,VAT,0004.7, -$TSMES,27/11/13,13:40:48.783,BLCAR, 0,R0482,1,001,SQUA-ACA,0,VAT,0001.8, -$TSMES,27/11/13,13:41:11.596,BLCAR, 0,R0482,1,002,EUTR-GUR,0,VAT,0036.8, -$TSMES,27/11/13,13:41:43.833,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0038.3, -$TSMES,27/11/13,13:42:28.895,BLCAR, 0,R0482,1,001,MOLV-MOL,0,VAT,0000.7, -$TSMES,27/11/13,13:42:57.179,BLCAR, 0,R0482,1,001,SCOM-SCO,0,VAT,0000.4, -$TSMES,27/11/13,13:43:24.662,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0028.9, -$TSMES,27/11/13,13:44:00.332,BLCAR, 0,R0482,1,001,ARGE-SPH,0,VAT,0001.4, -$TSMES,27/11/13,13:44:33.512,BLCAR, 0,R0482,1,001,GLYP-CYN,0,VAT,0000.3, -$TSMES,27/11/13,13:45:01.228,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0044.2, -$TSMES,27/11/13,13:45:44.635,BLCAR, 0,R0482,1,001,NEPH-NOR,0,VAT,0000.7, -$TSMES,27/11/13,13:46:34.572,BLCAR, 0,R0482,1,001,MICR-POU,0,VAT,0001.5, -$TSMES,27/11/13,13:46:58.845,BLCAR, 0,R0482,1,001,HIPP-PLA,0,VAT,0006.0, -$TSMES,27/11/13,13:47:30.185,BLCAR, 0,R0482,1,002,TRIS-ESM,0,VAT,0027.9, -$TSMES,27/11/13,13:48:06.934,BLCAR, 0,R0482,1,001,TRIS-MIN,0,VAT,0008.4, -$TSMES,27/11/13,13:49:00.114,BLCAR, 0,R0482,1,001,ASPI-CUC,0,VAT,0000.3, -$TSMES,27/11/13,13:49:22.326,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0034.3, -$TSMES,27/11/13,13:50:00.587,BLCAR, 0,R0482,1,001,MICR-KIT,0,VAT,0002.0, -$TSMES,27/11/13,13:50:54.059,BLCAR, 0,R0482,1,001,LIMA-LIM,0,VAT,0000.8, -$TSMES,27/11/13,13:51:57.928,BLCAR, 0,R0482,1,001,CALL-LYR,0,VAT,0000.7, -$TSMES,27/11/13,13:53:03.922,BLCAR, 0,R0482,1,001,LEPI-WHI,0,VAT,0005.3, -$TSMES,27/11/13,13:53:27.565,BLCAR, 0,R0482,1,001,CALL-MAC,0,VAT,0000.2, -$TSMES,27/11/13,13:53:57.947,BLCAR, 0,R0482,1,001,PLEU-PLA,0,VAT,0000.8, -$TSMES,27/11/13,13:54:15.343,BLCAR, 0,R0482,1,001,TODA-EBL,0,VAT,0000.2, -$TSMES,27/11/13,13:54:35.664,BLCAR, 0,R0482,1,001,ELED-CIR,0,VAT,0000.3, -$TSMES,27/11/13,13:55:04.135,BLCAR, 0,R0482,1,001,TRAC-TRU,0,VAT,0000.7, -$TSMES,27/11/13,13:55:28.772,BLCAR, 0,R0482,1,001,LOLI-FOR,0,VAT,0001.1, -$TSMES,27/11/13,13:56:07.647,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0039.5, -$TSMES,27/11/13,13:56:47.621,BLCAR, 0,R0482,1,001,SEPI-OLZ,0,VAT,0000.1, -$TSMES,27/11/13,13:58:31.048,BLCAR, 0,R0482,1,001,HIPP-PLA,0,VAT,0000.0, -$TSMES,27/11/13,15:04:17.116,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0037.6, -$TSMES,27/11/13,15:05:36.658,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.3, -$TSMES,27/11/13,15:07:24.923,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.3, -$TSMES,27/11/13,15:08:42.057,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.9, -$TSMES,27/11/13,15:09:01.674,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.5, -$TSMES,27/11/13,15:10:13.129,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.1, -$TSMES,27/11/13,15:10:36.121,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.2, -$TSMES,27/11/13,15:11:00.595,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0036.5, -$TSMES,27/11/13,15:11:53.701,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.9, -$TSMES,27/11/13,15:14:24.769,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.1, -$TSMES,27/11/13,15:16:18.478,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0041.0, -$TSMES,27/11/13,15:16:38.981,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.6, -$TSMES,27/11/13,15:17:36.780,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0037.6, -$TSMES,27/11/13,15:17:59.835,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.4, -$TSMES,27/11/13,15:19:19.326,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0037.7, -$TSMES,27/11/13,15:19:51.956,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.5, -$TSMES,27/11/13,15:21:07.014,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0038.8, -$TSMES,27/11/13,15:21:35.753,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0041.0, -$TSMES,27/11/13,15:21:57.564,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0037.9, -$TSMES,27/11/13,15:23:13.595,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.8, -$TSMES,27/11/13,15:23:44.203,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.3, -$TSMES,27/11/13,15:25:01.382,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0038.5, -$TSMES,27/11/13,15:25:33.850,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.7, -$TSMES,27/11/13,15:26:40.348,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.3, -$TSMES,27/11/13,15:27:25.003,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0041.2, -$TSMES,27/11/13,15:27:52.244,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0038.6, -$TSMES,27/11/13,15:29:15.679,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.0, -$TSMES,27/11/13,15:29:45.429,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0041.7, -$TSMES,27/11/13,15:31:04.254,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.1, -$TSMES,27/11/13,15:32:48.975,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0036.8, -$TSMES,27/11/13,15:33:13.585,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.6, -$TSMES,27/11/13,15:33:38.474,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.9, -$TSMES,27/11/13,15:34:25.118,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0036.7, -$TSMES,27/11/13,15:35:39.285,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.7, -$TSMES,27/11/13,15:36:06.481,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.3, -$TSMES,27/11/13,15:36:54.494,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.6, -$TSMES,27/11/13,15:38:37.423,BLCAR, 0,R0483,1,002,MELA-AEG,G,VAT,0039.6, -$TSMES,27/11/13,15:39:06.734,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.4, -$TSMES,27/11/13,15:39:30.356,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.2, -$TSMES,27/11/13,15:42:01.949,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.5, -$TSMES,27/11/13,15:42:32.622,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.3, -$TSMES,27/11/13,15:43:53.560,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0034.4, -$TSMES,27/11/13,15:44:53.834,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.7, -$TSMES,27/11/13,15:45:20.674,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.5, -$TSMES,27/11/13,15:45:42.151,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.8, -$TSMES,27/11/13,15:46:36.631,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0038.5, -$TSMES,27/11/13,15:47:46.081,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0041.1, -$TSMES,27/11/13,15:48:09.796,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0036.9, -$TSMES,27/11/13,15:49:07.011,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.1, -$TSMES,27/11/13,15:50:20.735,BLCAR, 0,R0483,1,001,EUTR-GUR,0,VAT,0009.3, -$TSMES,27/11/13,15:50:46.736,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0037.4, -$TSMES,27/11/13,15:51:54.878,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0041.3, -$TSMES,27/11/13,15:52:30.751,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0035.9, -$TSMES,27/11/13,15:53:51.579,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.5, -$TSMES,27/11/13,15:54:27.228,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.8, -$TSMES,27/11/13,15:55:52.975,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0041.6, -$TSMES,27/11/13,15:56:16.404,BLCAR, 0,R0483,1,001,EUTR-GUR,0,VAT,0008.4, -$TSMES,27/11/13,15:57:44.638,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.2, -$TSMES,27/11/13,15:58:03.736,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.4, -$TSMES,27/11/13,15:59:20.147,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.1, -$TSMES,27/11/13,15:59:42.581,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0038.5, -$TSMES,27/11/13,16:00:05.526,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0038.5, -$TSMES,27/11/13,16:01:05.295,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.2, -$TSMES,27/11/13,16:01:38.199,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.2, -$TSMES,27/11/13,16:02:43.037,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.8, -$TSMES,27/11/13,16:03:48.080,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.5, -$TSMES,27/11/13,16:04:19.938,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.8, -$TSMES,27/11/13,16:04:44.532,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0039.0, -$TSMES,27/11/13,16:05:05.076,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0041.1, -$TSMES,27/11/13,16:05:28.231,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.5, -$TSMES,27/11/13,16:05:46.924,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.7, -$TSMES,27/11/13,16:06:11.887,BLCAR, 0,R0483,1,002,MELA-AEG,G,VAT,0037.8, -$TSMES,27/11/13,16:06:29.181,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0038.5, -$TSMES,27/11/13,16:06:52.290,BLCAR, 0,R0483,1,002,SCYL-CAN,0,VAT,0032.9, -$TSMES,27/11/13,16:07:14.568,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0039.6, -$TSMES,27/11/13,16:07:31.751,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0039.8, -$TSMES,27/11/13,16:08:04.245,BLCAR, 0,R0483,1,002,LOPH-PIS,0,VAT,0030.9, -$TSMES,27/11/13,16:08:33.424,BLCAR, 0,R0483,1,002,CONG-CON,0,VAT,0023.2, -$TSMES,27/11/13,16:08:57.169,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.8, -$TSMES,27/11/13,16:09:30.997,BLCAR, 0,R0483,1,002,LEPI-WHI,0,VAT,0024.9, -$TSMES,27/11/13,16:10:05.148,BLCAR, 0,R0483,1,002,SCOM-SCO,0,VAT,0020.7, -$TSMES,27/11/13,16:10:39.324,BLCAR, 0,R0483,1,001,MICR-KIT,0,VAT,0000.8, -$TSMES,27/11/13,16:11:07.157,BLCAR, 0,R0483,1,002,MERL-MCC,0,VAT,0031.9, -$TSMES,27/11/13,16:11:35.229,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.3, -$TSMES,27/11/13,16:12:26.292,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0031.0, -$TSMES,27/11/13,16:13:21.182,BLCAR, 0,R0483,1,001,GLYP-CYN,0,VAT,0001.0, -$TSMES,27/11/13,16:13:47.758,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0027.2, -$TSMES,27/11/13,16:14:10.075,BLCAR, 0,R0483,1,002,LOLI-FOR,0,VAT,0022.6, -$TSMES,27/11/13,16:14:35.253,BLCAR, 0,R0483,1,001,EUTR-GUR,0,VAT,0005.6, -$TSMES,27/11/13,16:15:22.151,BLCAR, 0,R0483,1,001,MICR-POU,0,VAT,0001.1, -$TSMES,27/11/13,16:16:14.956,BLCAR, 0,R0483,1,001,HIPP-PLA,0,VAT,0000.2, -$TSMES,27/11/13,16:16:52.305,BLCAR, 0,R0483,1,001,TRAC-TRU,0,VAT,0000.4, -$TSMES,27/11/13,16:17:13.456,BLCAR, 0,R0483,1,001,SPRA-SPR,0,VAT,0000.6, -$TSMES,27/11/13,16:17:37.593,BLCAR, 0,R0483,1,001,ARGE-SPH,0,VAT,0000.8, -$TSMES,27/11/13,16:18:08.358,BLCAR, 0,R0483,1,001,SEPI-OLZ,0,VAT,0000.1, -$TSMES,27/11/13,16:18:44.478,BLCAR, 0,R0483,1,001,LOLI-FOR,P,VAT,0000.3, -$TSMES,27/11/13,16:19:19.836,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.1, -$TSMES,27/11/13,16:19:44.016,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0043.0, -$TSMES,27/11/13,16:20:12.751,BLCAR, 0,R0483,1,001,TODA-EBL,0,VAT,0000.6, -$TSMES,27/11/13,16:21:02.469,BLCAR, 0,R0483,1,001,CALL-LYR,0,VAT,0000.2, -$TSMES,27/11/13,16:21:25.949,BLCAR, 0,R0483,1,001,CALL-MAC,0,VAT,0000.2, -$TSMES,27/11/13,16:21:55.232,BLCAR, 0,R0483,1,002,MERL-MNG,P,VAT,0028.0, -$TSMES,27/11/13,16:22:21.965,BLCAR, 0,R0483,1,001,ELED-CIR,0,VAT,0001.4, -$TSMES,27/11/13,16:22:51.628,BLCAR, 0,R0483,1,001,TRIS-MIN,0,VAT,0003.6, -$TSMES,27/11/13,18:49:59.855,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0019.8, -$TSMES,27/11/13,18:50:19.448,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0016.8, -$TSMES,27/11/13,18:55:48.008,BLCAR, 0,R0484,1,001,EUTR-GUR,0,VAT,0007.6, -$TSMES,27/11/13,18:56:34.603,BLCAR, 0,R0484,1,002,EUTR-GUR,0,VAT,0011.7, -$TSMES,27/11/13,18:58:57.070,BLCAR, 0,R0484,1,001,EUTR-GUR,0,VAT,0007.6, -$TSMES,27/11/13,18:59:34.603,BLCAR, 0,R0484,1,002,MELA-NGE,0,VAT,0016.4, -$TSMES,27/11/13,19:00:53.047,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0020.9, -$TSMES,27/11/13,19:01:17.629,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0020.0, -$TSMES,27/11/13,19:02:01.189,BLCAR, 0,R0484,1,002,EUTR-GUR,0,VAT,0008.5, -$TSMES,27/11/13,19:02:23.329,BLCAR, 0,R0484,1,002,MELA-NGE,0,VAT,0016.1, -$TSMES,27/11/13,19:04:11.551,BLCAR, 0,R0484,1,002,MERL-MNG,p,VAT,0020.9, -$TSMES,27/11/13,19:04:54.312,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0017.9, -$TSMES,27/11/13,19:05:31.029,BLCAR, 0,R0484,1,002,MELA-NGE,0,VAT,0016.0, -$TSMES,27/11/13,19:06:32.679,BLCAR, 0,R0484,1,002,EUTR-GUR,0,VAT,0011.3, -$TSMES,27/11/13,19:06:59.485,BLCAR, 0,R0484,1,001,EUTR-GUR,0,VAT,0007.3, -$TSMES,27/11/13,19:10:50.599,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0019.0, -$TSMES,27/11/13,19:12:32.300,BLCAR, 0,R0484,1,001,EUTR-GUR,0,VAT,0008.4, -$TSMES,27/11/13,19:13:11.765,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0020.6, -$TSMES,27/11/13,19:13:42.494,BLCAR, 0,R0484,1,002,MERL-MNG,p,VAT,0018.7, -$TSMES,27/11/13,19:14:34.508,BLCAR, 0,R0484,1,002,MELA-NGE,0,VAT,0015.0, -$TSMES,27/11/13,19:18:06.846,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0011.6, -$TSMES,27/11/13,19:19:06.548,BLCAR, 0,R0484,1,001,EUTR-GUR,0,VAT,0008.6, -$TSMES,27/11/13,19:19:29.730,BLCAR, 0,R0484,1,002,EUTR-GUR,0,VAT,0012.4, -$TSMES,27/11/13,19:19:53.075,BLCAR, 0,R0484,1,002,MELA-AEG,0,VAT,0005.1, -$TSMES,27/11/13,19:20:15.873,BLCAR, 0,R0484,1,002,EUTR-GUR,0,VAT,0013.7, -$TSMES,27/11/13,19:20:42.508,BLCAR, 0,R0484,1,001,HIPP-PLA,0,VAT,0000.5, -$TSMES,27/11/13,19:21:14.304,BLCAR, 0,R0484,1,001,SCYL-CAN,0,VAT,0000.9, -$TSMES,27/11/13,19:22:30.586,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0021.2, -$TSMES,27/11/13,19:22:50.150,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0009.2, -$TSMES,27/11/13,19:23:12.550,BLCAR, 0,R0484,1,002,CLUP-HAR,0,VAT,0001.6, -$TSMES,27/11/13,19:23:38.609,BLCAR, 0,R0484,1,002,MELA-NGE,0,VAT,0005.1, -$TSMES,27/11/13,19:24:07.337,BLCAR, 0,R0484,1,001,MERL-MCC,0,VAT,0000.5, -$TSMES,27/11/13,19:24:36.607,BLCAR, 0,R0484,1,001,HIPP-PLA,0,VAT,0001.7, -$TSMES,27/11/13,19:25:36.793,BLCAR, 0,R0484,1,001,MICR-POU,0,VAT,0000.7, -$TSMES,27/11/13,19:26:04.841,BLCAR, 0,R0484,1,002,MERL-MNG,p,VAT,0005.8, -$TSMES,27/11/13,19:26:26.140,BLCAR, 0,R0484,1,001,SCOM-SCO,0,VAT,0000.0, -$TSMES,27/11/13,19:26:47.870,BLCAR, 0,R0484,1,001,GLYP-CYN,0,VAT,0000.2, -$TSMES,27/11/13,19:27:09.223,BLCAR, 0,R0484,1,001,TRIS-MIN,0,VAT,0000.6, -$TSMES,27/11/13,19:27:29.741,BLCAR, 0,R0484,1,001,ARGE-SPH,0,VAT,0000.2, -$TSMES,27/11/13,19:27:54.743,BLCAR, 0,R0484,1,001,TRAC-TRU,0,VAT,0000.2, -$TSMES,27/11/13,19:28:15.821,BLCAR, 0,R0484,1,002,NEPH-NOR,0,VAT,0004.3, -$TSMES,27/11/13,19:28:40.581,BLCAR, 0,R0484,1,001,SEPI-OLZ,0,VAT,0000.1, -$TSMES,27/11/13,19:29:00.043,BLCAR, 0,R0484,1,001,LOLI-FOR,0,VAT,0000.1, -$TSMES,27/11/13,19:29:34.076,BLCAR, 0,R0484,1,001,ROSS-MAC,0,VAT,0000.1, -$TSMES,27/11/13,19:30:00.792,BLCAR, 0,R0484,1,001,ELED-CIR,0,VAT,0000.6, -$TSMES,27/11/13,19:30:27.478,BLCAR, 0,R0484,1,001,TODA-EBL,0,VAT,0000.1, +$TSMES,27/11/13,09:12:04.612,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0015.6, +$TSMES,27/11/13,09:13:21.994,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.9, +$TSMES,27/11/13,09:15:12.588,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0021.4, +$TSMES,27/11/13,09:15:58.396,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0017.9, +$TSMES,27/11/13,09:17:11.714,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0017.2, +$TSMES,27/11/13,09:17:40.272,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0021.1, +$TSMES,27/11/13,09:18:48.818,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0018.0, +$TSMES,27/11/13,09:19:33.335,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0016.6, +$TSMES,27/11/13,09:21:16.442,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0015.8, +$TSMES,27/11/13,09:21:40.776,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0022.8, +$TSMES,27/11/13,09:22:45.945,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0016.1, +$TSMES,27/11/13,09:26:51.656,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0019.1, +$TSMES,27/11/13,09:27:53.133,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0016.5, +$TSMES,27/11/13,09:28:17.445,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0018.4, +$TSMES,27/11/13,09:31:22.362,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0014.6, +$TSMES,27/11/13,09:31:45.650,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.4, +$TSMES,27/11/13,09:32:05.512,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0023.0, +$TSMES,27/11/13,09:33:00.869,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0014.2, +$TSMES,27/11/13,09:33:24.472,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0012.8, +$TSMES,27/11/13,09:34:25.343,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0015.8, +$TSMES,27/11/13,09:34:44.541,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0021.0, +$TSMES,27/11/13,09:36:02.174,BLCAR, 0,A,1,001,NEPH-NOR,0,VAT,0006.3, +$TSMES,27/11/13,09:36:30.632,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0024.1, +$TSMES,27/11/13,09:37:25.749,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0017.5, +$TSMES,27/11/13,09:37:47.056,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.3, +$TSMES,27/11/13,09:38:44.513,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0018.5, +$TSMES,27/11/13,09:40:34.621,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0015.8, +$TSMES,27/11/13,09:41:28.855,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0011.3, +$TSMES,27/11/13,09:42:39.349,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0016.7, +$TSMES,27/11/13,09:43:01.405,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0020.2, +$TSMES,27/11/13,09:43:21.779,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0018.7, +$TSMES,27/11/13,09:44:16.028,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0025.7, +$TSMES,27/11/13,09:44:39.643,BLCAR, 0,A,1,002,MERL-MCC,0,VAT,0017.6, +$TSMES,27/11/13,09:45:41.310,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0015.9, +$TSMES,27/11/13,09:46:04.181,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0018.0, +$TSMES,27/11/13,09:47:00.822,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0018.1, +$TSMES,27/11/13,09:47:25.806,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.0, +$TSMES,27/11/13,09:48:25.059,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0013.1, +$TSMES,27/11/13,09:48:47.779,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0016.4, +$TSMES,27/11/13,09:50:25.036,BLCAR,-1,A,1,002,CLUP-HAR,0,VAT,-001.8, +$TSMES,27/11/13,09:51:02.085,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0016.5, +$TSMES,27/11/13,09:52:08.332,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0016.2, +$TSMES,27/11/13,09:52:34.644,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0020.6, +$TSMES,27/11/13,09:52:57.540,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0016.1, +$TSMES,27/11/13,09:53:31.676,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0018.3, +$TSMES,27/11/13,09:54:07.781,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0021.0, +$TSMES,27/11/13,09:55:10.374,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0018.4, +$TSMES,27/11/13,09:55:35.859,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.1, +$TSMES,27/11/13,09:56:02.545,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0014.2, +$TSMES,27/11/13,09:57:06.900,BLCAR, 0,A,1,002,EUTR-GUR,0,VAT,0013.5, +$TSMES,27/11/13,09:57:28.821,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0018.3, +$TSMES,27/11/13,09:58:35.607,BLCAR, 0,A,1,001,MERL-MNG,0,VAT,0009.9, +$TSMES,27/11/13,09:59:17.462,BLCAR, 0,A,1,001,EUTR-GUR,0,VAT,0006.9, +$TSMES,27/11/13,10:00:18.404,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0023.0, +$TSMES,27/11/13,10:00:45.111,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0014.8, +$TSMES,27/11/13,10:01:59.945,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0019.3, +$TSMES,27/11/13,10:02:23.121,BLCAR, 0,A,1,002,NEPH-NOR,0,VAT,0010.2, +$TSMES,27/11/13,10:03:37.632,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0014.0, +$TSMES,27/11/13,10:04:06.529,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0015.1, +$TSMES,27/11/13,10:05:06.144,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0014.0, +$TSMES,27/11/13,10:05:36.831,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0020.3, +$TSMES,27/11/13,10:06:02.527,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0012.3, +$TSMES,27/11/13,10:07:12.015,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0023.7, +$TSMES,27/11/13,10:07:44.295,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0018.2, +$TSMES,27/11/13,10:08:22.400,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0017.6, +$TSMES,27/11/13,10:09:24.404,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0022.5, +$TSMES,27/11/13,10:09:45.542,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0017.7, +$TSMES,27/11/13,10:10:07.635,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0021.8, +$TSMES,27/11/13,10:10:38.750,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0011.2, +$TSMES,27/11/13,10:11:05.784,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0015.9, +$TSMES,27/11/13,10:11:34.634,BLCAR, 0,A,1,002,CONG-CON,0,VAT,0001.0, +$TSMES,27/11/13,10:12:40.011,BLCAR,-1,A,1,002,RAJA-CLA,0,VAT,-000.1, +$TSMES,27/11/13,10:13:08.077,BLCAR, 0,A,1,002,MERL-MNG,0,VAT,0014.8, +$TSMES,27/11/13,10:13:35.173,BLCAR, 0,A,1,002,TRIS-ESM,0,VAT,0012.2, +$TSMES,27/11/13,10:13:56.456,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0020.3, +$TSMES,27/11/13,10:14:43.589,BLCAR, 0,A,1,001,HIPP-PLA,0,VAT,0002.9, +$TSMES,27/11/13,10:15:33.096,BLCAR, 0,A,1,001,MELA-AEG,P,VAT,0001.4, +$TSMES,27/11/13,10:15:59.750,BLCAR, 0,A,1,002,MELA-AEG,G,VAT,0007.8, +$TSMES,27/11/13,10:16:28.073,BLCAR, 0,A,1,001,GADU-MOR,0,VAT,0000.1, +$TSMES,27/11/13,10:17:04.293,BLCAR, 0,A,1,001,MERL-MNG,0,VAT,0007.1, +$TSMES,27/11/13,10:17:35.174,BLCAR, 0,A,1,001,TRIS-MIN,0,VAT,0006.0, +$TSMES,27/11/13,10:18:09.419,BLCAR, 0,A,1,001,MERL-MNG,P,VAT,0007.4, +$TSMES,27/11/13,10:18:41.202,BLCAR, 0,A,1,001,MERL-MNG,0,VAT,0000.4, +$TSMES,27/11/13,10:19:05.719,BLCAR, 0,A,1,002,CLUP-HAR,0,VAT,0007.7, +$TSMES,27/11/13,10:19:50.270,BLCAR, 0,A,1,001,HIPP-PLA,0,VAT,0002.7, +$TSMES,27/11/13,10:20:20.642,BLCAR, 0,A,1,002,MICR-POU,0,VAT,0010.7, +$TSMES,27/11/13,10:20:48.724,BLCAR, 0,A,1,001,LOLI-FOR,0,VAT,0002.2, +$TSMES,27/11/13,10:21:10.768,BLCAR, 0,A,1,001,EUTR-GUR,0,VAT,0004.7, +$TSMES,27/11/13,10:21:41.022,BLCAR, 0,A,1,001,NEPH-NOR,0,VAT,0006.3, +$TSMES,27/11/13,10:22:42.411,BLCAR, 0,A,1,001,ARGE-SPH,0,VAT,0000.1, +$TSMES,27/11/13,10:23:25.537,BLCAR, 0,A,1,001,TRAC-TRU,0,VAT,0000.1, +$TSMES,27/11/13,10:24:06.077,BLCAR, 0,A,1,001,SCOM-SCO,0,VAT,0000.4, +$TSMES,27/11/13,10:24:34.127,BLCAR, 0,A,1,001,MAUR-MUE,0,VAT,0000.1, +$TSMES,27/11/13,10:25:23.660,BLCAR, 0,A,1,001,LEPI-WHI,0,VAT,0003.1, +$TSMES,27/11/13,10:25:47.598,BLCAR, 0,A,1,002,SCYL-CAN,0,VAT,0005.3, +$TSMES,27/11/13,10:26:12.602,BLCAR, 0,A,1,002,LOPH-PIS,0,VAT,0012.0, +$TSMES,27/11/13,10:26:33.530,BLCAR, 0,A,1,003,ELED-CIR,0,VAT,0001.4, +$TSMES,27/11/13,10:27:34.508,BLCAR, 0,A,1,003,ROSS-MAC,0,VAT,0000.1, +$TSMES,27/11/13,10:28:17.554,BLCAR, 0,A,1,001,ENCH-CIM,0,VAT,0000.8, +$TSMES,27/11/13,10:28:57.935,BLCAR, 0,A,1,001,LIMA-LIM,0,VAT,0000.2, +$TSMES,27/11/13,10:29:42.251,BLCAR, 0,A,1,001,CALL-MAC,0,VAT,0000.2, +$TSMES,27/11/13,10:30:09.536,BLCAR, 0,A,1,001,CALL-LYR,0,VAT,0000.8, +$TSMES,27/11/13,10:30:59.437,BLCAR, 0,A,1,001,MICR-VAR,0,VAT,0000.2, +$TSMES,27/11/13,10:31:32.624,BLCAR, 0,A,1,001,SEPI-OLZ,0,VAT,0000.2, +$TSMES,27/11/13,10:31:59.713,BLCAR, 0,A,1,003,LOLI-FOR,P,VAT,0000.1, +$TSMES,27/11/13,10:32:34.851,BLCAR, 0,A,1,003,TODA-EBL,0,VAT,0000.2, +$TSMES,27/11/13,10:33:02.175,BLCAR, 0,A,1,002,MERL-MCC,0,VAT,0013.8, +$TSMES,27/11/13,10:35:38.377,BLCAR, 0,A,1,001,GLYP-CYN,0,VAT,0000.3, +$TSMES,27/11/13,12:04:35.575,BLCAR, 0,R0482,1,001,MERL-MNG,0,VAT,0020.0, +$TSMES,27/11/13,12:06:30.634,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.9, +$TSMES,27/11/13,12:08:42.036,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.3, +$TSMES,27/11/13,12:09:02.786,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0019.2, +$TSMES,27/11/13,12:12:30.199,BLCAR, 0,R0482,1,002,MELA-AEG,0,VAT,0021.9, +$TSMES,27/11/13,12:13:14.543,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0000.0, +$TSMES,27/11/13,12:13:35.465,BLCAR,-1,R0482,1,002,MELA-AEG,0,VAT,-001.4, +$TSMES,27/11/13,12:14:42.156,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0000.9, +$TSMES,27/11/13,12:15:05.319,BLCAR,-1,R0482,1,002,CLUP-HAR,0,VAT,-002.9, +$TSMES,27/11/13,12:16:11.874,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0007.1, +$TSMES,27/11/13,12:16:53.113,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0000.3, +$TSMES,27/11/13,12:19:51.787,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0000.4, +$TSMES,27/11/13,12:20:45.974,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.5, +$TSMES,27/11/13,12:21:08.178,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.2, +$TSMES,27/11/13,12:21:41.969,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0021.3, +$TSMES,27/11/13,12:22:09.619,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0015.2, +$TSMES,27/11/13,12:23:05.053,BLCAR, 0,R0482,1,002,MERL-MNG,P,VAT,0014.7, +$TSMES,27/11/13,12:24:17.176,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0016.4, +$TSMES,27/11/13,12:25:25.163,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.8, +$TSMES,27/11/13,12:27:27.892,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0017.8, +$TSMES,27/11/13,12:27:49.775,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0017.7, +$TSMES,27/11/13,12:28:15.701,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0007.3, +$TSMES,27/11/13,12:32:10.843,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0018.7, +$TSMES,27/11/13,12:34:21.824,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.6, +$TSMES,27/11/13,12:35:28.244,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.9, +$TSMES,27/11/13,12:35:55.232,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0018.6, +$TSMES,27/11/13,12:36:27.381,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.9, +$TSMES,27/11/13,12:37:02.445,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0021.9, +$TSMES,27/11/13,12:38:17.102,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0020.9, +$TSMES,27/11/13,12:38:39.197,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0020.5, +$TSMES,27/11/13,12:39:55.258,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0008.8, +$TSMES,27/11/13,12:41:15.892,BLCAR, 0,R0482,1,001,MELA-AEG,P,VAT,0008.7, +$TSMES,27/11/13,12:41:42.452,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0019.1, +$TSMES,27/11/13,12:43:19.486,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0018.1, +$TSMES,27/11/13,12:44:34.765,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0018.3, +$TSMES,27/11/13,12:45:02.744,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0018.4, +$TSMES,27/11/13,12:46:42.493,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0020.0, +$TSMES,27/11/13,12:47:10.163,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0021.0, +$TSMES,27/11/13,12:49:31.763,BLCAR,-1,R0482,1,002,MERL-MNG,P,VAT,-002.4, +$TSMES,27/11/13,12:50:05.748,BLCAR,-1,R0482,1,002,MELA-AEG,G,VAT,-000.1, +$TSMES,27/11/13,12:52:27.719,BLCAR,-1,R0482,1,002,MERL-MNG,0,VAT,-000.2, +$TSMES,27/11/13,12:53:38.590,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0006.6, +$TSMES,27/11/13,12:54:05.175,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0034.3, +$TSMES,27/11/13,12:54:57.849,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0039.3, +$TSMES,27/11/13,12:55:38.978,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0005.0, +$TSMES,27/11/13,12:55:58.875,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0038.0, +$TSMES,27/11/13,12:56:58.719,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0039.8, +$TSMES,27/11/13,12:58:00.192,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0040.2, +$TSMES,27/11/13,12:58:59.709,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.0, +$TSMES,27/11/13,13:00:07.669,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0042.2, +$TSMES,27/11/13,13:00:30.038,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0040.7, +$TSMES,27/11/13,13:00:56.621,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0042.0, +$TSMES,27/11/13,13:01:46.953,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0039.7, +$TSMES,27/11/13,13:02:16.623,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0042.7, +$TSMES,27/11/13,13:03:14.387,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0008.3, +$TSMES,27/11/13,13:03:53.935,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0041.8, +$TSMES,27/11/13,13:04:18.682,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.8, +$TSMES,27/11/13,13:04:44.747,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.8, +$TSMES,27/11/13,13:06:33.303,BLCAR, 0,R0482,1,002,TRIS-ESM,0,VAT,0037.5, +$TSMES,27/11/13,13:07:10.083,BLCAR, 0,R0482,1,001,MERL-MNG,0,VAT,0011.8, +$TSMES,27/11/13,13:12:04.520,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0042.3, +$TSMES,27/11/13,13:13:25.402,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.3, +$TSMES,27/11/13,13:13:45.372,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0042.0, +$TSMES,27/11/13,13:14:52.337,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0040.0, +$TSMES,27/11/13,13:16:04.830,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.4, +$TSMES,27/11/13,13:16:47.888,BLCAR, 0,R0482,1,002,MERL-MNG,P,VAT,0041.0, +$TSMES,27/11/13,13:17:10.620,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0045.5, +$TSMES,27/11/13,13:18:21.177,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0041.8, +$TSMES,27/11/13,13:18:46.078,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.1, +$TSMES,27/11/13,13:20:06.454,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0008.4, +$TSMES,27/11/13,13:20:43.587,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0040.2, +$TSMES,27/11/13,13:21:13.460,BLCAR, 0,R0482,1,002,TRIS-ESM,0,VAT,0035.1, +$TSMES,27/11/13,13:21:42.160,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0043.2, +$TSMES,27/11/13,13:22:43.729,BLCAR, 0,R0482,1,002,EUTR-GUR,0,VAT,0036.9, +$TSMES,27/11/13,13:23:05.231,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0040.3, +$TSMES,27/11/13,13:23:34.911,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0040.9, +$TSMES,27/11/13,13:24:11.619,BLCAR, 0,R0482,1,002,MELA-AEG,0,VAT,0038.0, +$TSMES,27/11/13,13:24:31.678,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.6, +$TSMES,27/11/13,13:25:51.665,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0041.5, +$TSMES,27/11/13,13:26:40.759,BLCAR, 0,R0482,1,002,EUTR-GUR,0,VAT,0034.1, +$TSMES,27/11/13,13:27:08.325,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0040.0, +$TSMES,27/11/13,13:27:38.129,BLCAR, 0,R0482,1,002,SCYL-CAN,0,VAT,0036.8, +$TSMES,27/11/13,13:30:07.410,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0040.1, +$TSMES,27/11/13,13:31:10.336,BLCAR, 0,R0482,1,001,EUTR-GUR,0,VAT,0008.4, +$TSMES,27/11/13,13:33:25.697,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0042.7, +$TSMES,27/11/13,13:35:13.921,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0028.1, +$TSMES,27/11/13,13:35:34.139,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0040.6, +$TSMES,27/11/13,13:36:54.752,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0041.0, +$TSMES,27/11/13,13:37:51.527,BLCAR, 0,R0482,1,002,MELA-AEG,0,VAT,0039.3, +$TSMES,27/11/13,13:38:19.527,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0041.1, +$TSMES,27/11/13,13:39:05.751,BLCAR, 0,R0482,1,002,LOPH-PIS,0,VAT,0024.2, +$TSMES,27/11/13,13:39:33.528,BLCAR, 0,R0482,1,002,SCYL-CAN,0,VAT,0024.4, +$TSMES,27/11/13,13:39:55.322,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0037.2, +$TSMES,27/11/13,13:40:29.179,BLCAR, 0,R0482,1,001,MERL-MCC,0,VAT,0004.7, +$TSMES,27/11/13,13:40:48.783,BLCAR, 0,R0482,1,001,SQUA-ACA,0,VAT,0001.8, +$TSMES,27/11/13,13:41:11.596,BLCAR, 0,R0482,1,002,EUTR-GUR,0,VAT,0036.8, +$TSMES,27/11/13,13:41:43.833,BLCAR, 0,R0482,1,002,MELA-AEG,G,VAT,0038.3, +$TSMES,27/11/13,13:42:28.895,BLCAR, 0,R0482,1,001,MOLV-MOL,0,VAT,0000.7, +$TSMES,27/11/13,13:42:57.179,BLCAR, 0,R0482,1,001,SCOM-SCO,0,VAT,0000.4, +$TSMES,27/11/13,13:43:24.662,BLCAR, 0,R0482,1,002,CLUP-HAR,0,VAT,0028.9, +$TSMES,27/11/13,13:44:00.332,BLCAR, 0,R0482,1,001,ARGE-SPH,0,VAT,0001.4, +$TSMES,27/11/13,13:44:33.512,BLCAR, 0,R0482,1,001,GLYP-CYN,0,VAT,0000.3, +$TSMES,27/11/13,13:45:01.228,BLCAR, 0,R0482,1,002,MELA-AEG,P,VAT,0044.2, +$TSMES,27/11/13,13:45:44.635,BLCAR, 0,R0482,1,001,NEPH-NOR,0,VAT,0000.7, +$TSMES,27/11/13,13:46:34.572,BLCAR, 0,R0482,1,001,MICR-POU,0,VAT,0001.5, +$TSMES,27/11/13,13:46:58.845,BLCAR, 0,R0482,1,001,HIPP-PLA,0,VAT,0006.0, +$TSMES,27/11/13,13:47:30.185,BLCAR, 0,R0482,1,002,TRIS-ESM,0,VAT,0027.9, +$TSMES,27/11/13,13:48:06.934,BLCAR, 0,R0482,1,001,TRIS-MIN,0,VAT,0008.4, +$TSMES,27/11/13,13:49:00.114,BLCAR, 0,R0482,1,001,ASPI-CUC,0,VAT,0000.3, +$TSMES,27/11/13,13:49:22.326,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0034.3, +$TSMES,27/11/13,13:50:00.587,BLCAR, 0,R0482,1,001,MICR-KIT,0,VAT,0002.0, +$TSMES,27/11/13,13:50:54.059,BLCAR, 0,R0482,1,001,LIMA-LIM,0,VAT,0000.8, +$TSMES,27/11/13,13:51:57.928,BLCAR, 0,R0482,1,001,CALL-LYR,0,VAT,0000.7, +$TSMES,27/11/13,13:53:03.922,BLCAR, 0,R0482,1,001,LEPI-WHI,0,VAT,0005.3, +$TSMES,27/11/13,13:53:27.565,BLCAR, 0,R0482,1,001,CALL-MAC,0,VAT,0000.2, +$TSMES,27/11/13,13:53:57.947,BLCAR, 0,R0482,1,001,PLEU-PLA,0,VAT,0000.8, +$TSMES,27/11/13,13:54:15.343,BLCAR, 0,R0482,1,001,TODA-EBL,0,VAT,0000.2, +$TSMES,27/11/13,13:54:35.664,BLCAR, 0,R0482,1,001,ELED-CIR,0,VAT,0000.3, +$TSMES,27/11/13,13:55:04.135,BLCAR, 0,R0482,1,001,TRAC-TRU,0,VAT,0000.7, +$TSMES,27/11/13,13:55:28.772,BLCAR, 0,R0482,1,001,LOLI-FOR,0,VAT,0001.1, +$TSMES,27/11/13,13:56:07.647,BLCAR, 0,R0482,1,002,MERL-MNG,0,VAT,0039.5, +$TSMES,27/11/13,13:56:47.621,BLCAR, 0,R0482,1,001,SEPI-OLZ,0,VAT,0000.1, +$TSMES,27/11/13,13:58:31.048,BLCAR, 0,R0482,1,001,HIPP-PLA,0,VAT,0000.0, +$TSMES,27/11/13,15:04:17.116,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0037.6, +$TSMES,27/11/13,15:05:36.658,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.3, +$TSMES,27/11/13,15:07:24.923,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.3, +$TSMES,27/11/13,15:08:42.057,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.9, +$TSMES,27/11/13,15:09:01.674,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.5, +$TSMES,27/11/13,15:10:13.129,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.1, +$TSMES,27/11/13,15:10:36.121,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.2, +$TSMES,27/11/13,15:11:00.595,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0036.5, +$TSMES,27/11/13,15:11:53.701,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.9, +$TSMES,27/11/13,15:14:24.769,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.1, +$TSMES,27/11/13,15:16:18.478,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0041.0, +$TSMES,27/11/13,15:16:38.981,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.6, +$TSMES,27/11/13,15:17:36.780,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0037.6, +$TSMES,27/11/13,15:17:59.835,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.4, +$TSMES,27/11/13,15:19:19.326,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0037.7, +$TSMES,27/11/13,15:19:51.956,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.5, +$TSMES,27/11/13,15:21:07.014,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0038.8, +$TSMES,27/11/13,15:21:35.753,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0041.0, +$TSMES,27/11/13,15:21:57.564,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0037.9, +$TSMES,27/11/13,15:23:13.595,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.8, +$TSMES,27/11/13,15:23:44.203,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.3, +$TSMES,27/11/13,15:25:01.382,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0038.5, +$TSMES,27/11/13,15:25:33.850,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.7, +$TSMES,27/11/13,15:26:40.348,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.3, +$TSMES,27/11/13,15:27:25.003,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0041.2, +$TSMES,27/11/13,15:27:52.244,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0038.6, +$TSMES,27/11/13,15:29:15.679,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.0, +$TSMES,27/11/13,15:29:45.429,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0041.7, +$TSMES,27/11/13,15:31:04.254,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.1, +$TSMES,27/11/13,15:32:48.975,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0036.8, +$TSMES,27/11/13,15:33:13.585,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.6, +$TSMES,27/11/13,15:33:38.474,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.9, +$TSMES,27/11/13,15:34:25.118,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0036.7, +$TSMES,27/11/13,15:35:39.285,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.7, +$TSMES,27/11/13,15:36:06.481,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.3, +$TSMES,27/11/13,15:36:54.494,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.6, +$TSMES,27/11/13,15:38:37.423,BLCAR, 0,R0483,1,002,MELA-AEG,G,VAT,0039.6, +$TSMES,27/11/13,15:39:06.734,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.4, +$TSMES,27/11/13,15:39:30.356,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.2, +$TSMES,27/11/13,15:42:01.949,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.5, +$TSMES,27/11/13,15:42:32.622,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0040.3, +$TSMES,27/11/13,15:43:53.560,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0034.4, +$TSMES,27/11/13,15:44:53.834,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.7, +$TSMES,27/11/13,15:45:20.674,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.5, +$TSMES,27/11/13,15:45:42.151,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.8, +$TSMES,27/11/13,15:46:36.631,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0038.5, +$TSMES,27/11/13,15:47:46.081,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0041.1, +$TSMES,27/11/13,15:48:09.796,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0036.9, +$TSMES,27/11/13,15:49:07.011,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.1, +$TSMES,27/11/13,15:50:20.735,BLCAR, 0,R0483,1,001,EUTR-GUR,0,VAT,0009.3, +$TSMES,27/11/13,15:50:46.736,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0037.4, +$TSMES,27/11/13,15:51:54.878,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0041.3, +$TSMES,27/11/13,15:52:30.751,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0035.9, +$TSMES,27/11/13,15:53:51.579,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.5, +$TSMES,27/11/13,15:54:27.228,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.8, +$TSMES,27/11/13,15:55:52.975,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0041.6, +$TSMES,27/11/13,15:56:16.404,BLCAR, 0,R0483,1,001,EUTR-GUR,0,VAT,0008.4, +$TSMES,27/11/13,15:57:44.638,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.2, +$TSMES,27/11/13,15:58:03.736,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.4, +$TSMES,27/11/13,15:59:20.147,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.1, +$TSMES,27/11/13,15:59:42.581,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0038.5, +$TSMES,27/11/13,16:00:05.526,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0038.5, +$TSMES,27/11/13,16:01:05.295,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.2, +$TSMES,27/11/13,16:01:38.199,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.2, +$TSMES,27/11/13,16:02:43.037,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.8, +$TSMES,27/11/13,16:03:48.080,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.5, +$TSMES,27/11/13,16:04:19.938,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.8, +$TSMES,27/11/13,16:04:44.532,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0039.0, +$TSMES,27/11/13,16:05:05.076,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0041.1, +$TSMES,27/11/13,16:05:28.231,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0040.5, +$TSMES,27/11/13,16:05:46.924,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.7, +$TSMES,27/11/13,16:06:11.887,BLCAR, 0,R0483,1,002,MELA-AEG,G,VAT,0037.8, +$TSMES,27/11/13,16:06:29.181,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0038.5, +$TSMES,27/11/13,16:06:52.290,BLCAR, 0,R0483,1,002,SCYL-CAN,0,VAT,0032.9, +$TSMES,27/11/13,16:07:14.568,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0039.6, +$TSMES,27/11/13,16:07:31.751,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0039.8, +$TSMES,27/11/13,16:08:04.245,BLCAR, 0,R0483,1,002,LOPH-PIS,0,VAT,0030.9, +$TSMES,27/11/13,16:08:33.424,BLCAR, 0,R0483,1,002,CONG-CON,0,VAT,0023.2, +$TSMES,27/11/13,16:08:57.169,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0039.8, +$TSMES,27/11/13,16:09:30.997,BLCAR, 0,R0483,1,002,LEPI-WHI,0,VAT,0024.9, +$TSMES,27/11/13,16:10:05.148,BLCAR, 0,R0483,1,002,SCOM-SCO,0,VAT,0020.7, +$TSMES,27/11/13,16:10:39.324,BLCAR, 0,R0483,1,001,MICR-KIT,0,VAT,0000.8, +$TSMES,27/11/13,16:11:07.157,BLCAR, 0,R0483,1,002,MERL-MCC,0,VAT,0031.9, +$TSMES,27/11/13,16:11:35.229,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0037.3, +$TSMES,27/11/13,16:12:26.292,BLCAR, 0,R0483,1,002,TRIS-ESM,0,VAT,0031.0, +$TSMES,27/11/13,16:13:21.182,BLCAR, 0,R0483,1,001,GLYP-CYN,0,VAT,0001.0, +$TSMES,27/11/13,16:13:47.758,BLCAR, 0,R0483,1,002,CLUP-HAR,0,VAT,0027.2, +$TSMES,27/11/13,16:14:10.075,BLCAR, 0,R0483,1,002,LOLI-FOR,0,VAT,0022.6, +$TSMES,27/11/13,16:14:35.253,BLCAR, 0,R0483,1,001,EUTR-GUR,0,VAT,0005.6, +$TSMES,27/11/13,16:15:22.151,BLCAR, 0,R0483,1,001,MICR-POU,0,VAT,0001.1, +$TSMES,27/11/13,16:16:14.956,BLCAR, 0,R0483,1,001,HIPP-PLA,0,VAT,0000.2, +$TSMES,27/11/13,16:16:52.305,BLCAR, 0,R0483,1,001,TRAC-TRU,0,VAT,0000.4, +$TSMES,27/11/13,16:17:13.456,BLCAR, 0,R0483,1,001,SPRA-SPR,0,VAT,0000.6, +$TSMES,27/11/13,16:17:37.593,BLCAR, 0,R0483,1,001,ARGE-SPH,0,VAT,0000.8, +$TSMES,27/11/13,16:18:08.358,BLCAR, 0,R0483,1,001,SEPI-OLZ,0,VAT,0000.1, +$TSMES,27/11/13,16:18:44.478,BLCAR, 0,R0483,1,001,LOLI-FOR,P,VAT,0000.3, +$TSMES,27/11/13,16:19:19.836,BLCAR, 0,R0483,1,002,MERL-MNG,0,VAT,0038.1, +$TSMES,27/11/13,16:19:44.016,BLCAR, 0,R0483,1,002,MELA-AEG,0,VAT,0043.0, +$TSMES,27/11/13,16:20:12.751,BLCAR, 0,R0483,1,001,TODA-EBL,0,VAT,0000.6, +$TSMES,27/11/13,16:21:02.469,BLCAR, 0,R0483,1,001,CALL-LYR,0,VAT,0000.2, +$TSMES,27/11/13,16:21:25.949,BLCAR, 0,R0483,1,001,CALL-MAC,0,VAT,0000.2, +$TSMES,27/11/13,16:21:55.232,BLCAR, 0,R0483,1,002,MERL-MNG,P,VAT,0028.0, +$TSMES,27/11/13,16:22:21.965,BLCAR, 0,R0483,1,001,ELED-CIR,0,VAT,0001.4, +$TSMES,27/11/13,16:22:51.628,BLCAR, 0,R0483,1,001,TRIS-MIN,0,VAT,0003.6, +$TSMES,27/11/13,18:49:59.855,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0019.8, +$TSMES,27/11/13,18:50:19.448,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0016.8, +$TSMES,27/11/13,18:55:48.008,BLCAR, 0,R0484,1,001,EUTR-GUR,0,VAT,0007.6, +$TSMES,27/11/13,18:56:34.603,BLCAR, 0,R0484,1,002,EUTR-GUR,0,VAT,0011.7, +$TSMES,27/11/13,18:58:57.070,BLCAR, 0,R0484,1,001,EUTR-GUR,0,VAT,0007.6, +$TSMES,27/11/13,18:59:34.603,BLCAR, 0,R0484,1,002,MELA-NGE,0,VAT,0016.4, +$TSMES,27/11/13,19:00:53.047,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0020.9, +$TSMES,27/11/13,19:01:17.629,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0020.0, +$TSMES,27/11/13,19:02:01.189,BLCAR, 0,R0484,1,002,EUTR-GUR,0,VAT,0008.5, +$TSMES,27/11/13,19:02:23.329,BLCAR, 0,R0484,1,002,MELA-NGE,0,VAT,0016.1, +$TSMES,27/11/13,19:04:11.551,BLCAR, 0,R0484,1,002,MERL-MNG,p,VAT,0020.9, +$TSMES,27/11/13,19:04:54.312,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0017.9, +$TSMES,27/11/13,19:05:31.029,BLCAR, 0,R0484,1,002,MELA-NGE,0,VAT,0016.0, +$TSMES,27/11/13,19:06:32.679,BLCAR, 0,R0484,1,002,EUTR-GUR,0,VAT,0011.3, +$TSMES,27/11/13,19:06:59.485,BLCAR, 0,R0484,1,001,EUTR-GUR,0,VAT,0007.3, +$TSMES,27/11/13,19:10:50.599,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0019.0, +$TSMES,27/11/13,19:12:32.300,BLCAR, 0,R0484,1,001,EUTR-GUR,0,VAT,0008.4, +$TSMES,27/11/13,19:13:11.765,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0020.6, +$TSMES,27/11/13,19:13:42.494,BLCAR, 0,R0484,1,002,MERL-MNG,p,VAT,0018.7, +$TSMES,27/11/13,19:14:34.508,BLCAR, 0,R0484,1,002,MELA-NGE,0,VAT,0015.0, +$TSMES,27/11/13,19:18:06.846,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0011.6, +$TSMES,27/11/13,19:19:06.548,BLCAR, 0,R0484,1,001,EUTR-GUR,0,VAT,0008.6, +$TSMES,27/11/13,19:19:29.730,BLCAR, 0,R0484,1,002,EUTR-GUR,0,VAT,0012.4, +$TSMES,27/11/13,19:19:53.075,BLCAR, 0,R0484,1,002,MELA-AEG,0,VAT,0005.1, +$TSMES,27/11/13,19:20:15.873,BLCAR, 0,R0484,1,002,EUTR-GUR,0,VAT,0013.7, +$TSMES,27/11/13,19:20:42.508,BLCAR, 0,R0484,1,001,HIPP-PLA,0,VAT,0000.5, +$TSMES,27/11/13,19:21:14.304,BLCAR, 0,R0484,1,001,SCYL-CAN,0,VAT,0000.9, +$TSMES,27/11/13,19:22:30.586,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0021.2, +$TSMES,27/11/13,19:22:50.150,BLCAR, 0,R0484,1,002,MERL-MNG,0,VAT,0009.2, +$TSMES,27/11/13,19:23:12.550,BLCAR, 0,R0484,1,002,CLUP-HAR,0,VAT,0001.6, +$TSMES,27/11/13,19:23:38.609,BLCAR, 0,R0484,1,002,MELA-NGE,0,VAT,0005.1, +$TSMES,27/11/13,19:24:07.337,BLCAR, 0,R0484,1,001,MERL-MCC,0,VAT,0000.5, +$TSMES,27/11/13,19:24:36.607,BLCAR, 0,R0484,1,001,HIPP-PLA,0,VAT,0001.7, +$TSMES,27/11/13,19:25:36.793,BLCAR, 0,R0484,1,001,MICR-POU,0,VAT,0000.7, +$TSMES,27/11/13,19:26:04.841,BLCAR, 0,R0484,1,002,MERL-MNG,p,VAT,0005.8, +$TSMES,27/11/13,19:26:26.140,BLCAR, 0,R0484,1,001,SCOM-SCO,0,VAT,0000.0, +$TSMES,27/11/13,19:26:47.870,BLCAR, 0,R0484,1,001,GLYP-CYN,0,VAT,0000.2, +$TSMES,27/11/13,19:27:09.223,BLCAR, 0,R0484,1,001,TRIS-MIN,0,VAT,0000.6, +$TSMES,27/11/13,19:27:29.741,BLCAR, 0,R0484,1,001,ARGE-SPH,0,VAT,0000.2, +$TSMES,27/11/13,19:27:54.743,BLCAR, 0,R0484,1,001,TRAC-TRU,0,VAT,0000.2, +$TSMES,27/11/13,19:28:15.821,BLCAR, 0,R0484,1,002,NEPH-NOR,0,VAT,0004.3, +$TSMES,27/11/13,19:28:40.581,BLCAR, 0,R0484,1,001,SEPI-OLZ,0,VAT,0000.1, +$TSMES,27/11/13,19:29:00.043,BLCAR, 0,R0484,1,001,LOLI-FOR,0,VAT,0000.1, +$TSMES,27/11/13,19:29:34.076,BLCAR, 0,R0484,1,001,ROSS-MAC,0,VAT,0000.1, +$TSMES,27/11/13,19:30:00.792,BLCAR, 0,R0484,1,001,ELED-CIR,0,VAT,0000.6, +$TSMES,27/11/13,19:30:27.478,BLCAR, 0,R0484,1,001,TODA-EBL,0,VAT,0000.1, Property changes on: trunk/tutti-service/src/test/resources/pupitri/ano-3898.car ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Modified: trunk/tutti-service/src/test/resources/pupitri/ano-3898.tnk =================================================================== --- trunk/tutti-service/src/test/resources/pupitri/ano-3898.tnk 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-service/src/test/resources/pupitri/ano-3898.tnk 2013-12-10 21:47:43 UTC (rev 1461) @@ -1,149 +1,149 @@ -$TSMES,27/11/13,09:08:45.130,BLTNK, 0,A,1,VAT,0045.4, -$TSMES,27/11/13,09:10:10.522,BLTNK, 0,A,1,VAT,0045.0, -$TSMES,27/11/13,09:12:14.730,BLTNK, 0,A,1,VAT,0043.9, -$TSMES,27/11/13,09:14:06.033,BLTNK, 0,A,1,VAT,0044.0, -$TSMES,27/11/13,09:16:08.907,BLTNK, 0,A,1,VAT,0042.4, -$TSMES,27/11/13,09:17:47.515,BLTNK, 0,A,1,VAT,0044.3, -$TSMES,27/11/13,09:19:44.039,BLTNK, 0,A,1,VAT,0043.6, -$TSMES,27/11/13,09:21:49.166,BLTNK, 0,A,1,VAT,0044.2, -$TSMES,27/11/13,09:26:57.681,BLTNK, 0,A,1,VAT,0045.9, -$TSMES,27/11/13,09:29:20.020,BLTNK, 0,A,1,VAT,0045.8, -$TSMES,27/11/13,09:30:37.535,BLTNK, 0,A,1,VAT,0047.0, -$TSMES,27/11/13,09:32:16.153,BLTNK, 0,A,1,VAT,0046.6, -$TSMES,27/11/13,09:33:30.882,BLTNK, 0,A,1,VAT,0044.4, -$TSMES,27/11/13,09:34:50.649,BLTNK, 0,A,1,VAT,0044.5, -$TSMES,27/11/13,09:36:36.933,BLTNK, 0,A,1,VAT,0043.7, -$TSMES,27/11/13,09:37:53.424,BLTNK, 0,A,1,VAT,0046.4, -$TSMES,27/11/13,09:41:40.944,BLTNK, 0,A,1,VAT,0048.6, -$TSMES,27/11/13,09:43:33.377,BLTNK, 0,A,1,VAT,0046.4, -$TSMES,27/11/13,09:44:46.487,BLTNK, 0,A,1,VAT,0046.4, -$TSMES,27/11/13,09:46:12.192,BLTNK, 0,A,1,VAT,0045.2, -$TSMES,27/11/13,09:47:34.846,BLTNK, 0,A,1,VAT,0045.4, -$TSMES,27/11/13,09:48:55.920,BLTNK, 0,A,1,VAT,0048.4, -$TSMES,27/11/13,09:51:12.724,BLTNK, 0,A,1,VAT,0046.4, -$TSMES,27/11/13,09:54:14.063,BLTNK, 0,A,1,VAT,0040.4, -$TSMES,27/11/13,09:56:11.000,BLTNK, 0,A,1,VAT,0044.2, -$TSMES,27/11/13,09:57:38.344,BLTNK, 0,A,1,VAT,0047.3, -$TSMES,27/11/13,09:59:23.603,BLTNK, 0,A,1,VAT,0047.6, -$TSMES,27/11/13,10:00:51.868,BLTNK, 0,A,1,VAT,0047.9, -$TSMES,27/11/13,10:02:29.655,BLTNK, 0,A,1,VAT,0044.2, -$TSMES,27/11/13,10:04:14.101,BLTNK, 0,A,1,VAT,0045.9, -$TSMES,27/11/13,10:06:08.886,BLTNK, 0,A,1,VAT,0043.2, -$TSMES,27/11/13,10:08:35.000,BLTNK, 0,A,1,VAT,0007.5, -$TSMES,27/11/13,12:02:28.762,BLTNK, 0,R0482,1,VAT,0043.5, -$TSMES,27/11/13,12:04:44.125,BLTNK, 0,R0482,1,VAT,0046.8, -$TSMES,27/11/13,12:06:40.650,BLTNK, 0,R0482,1,VAT,0043.0, -$TSMES,27/11/13,12:07:46.288,BLTNK, 0,R0482,1,VAT,0045.0, -$TSMES,27/11/13,12:09:09.246,BLTNK, 0,R0482,1,VAT,0043.3, -$TSMES,27/11/13,12:10:12.001,BLTNK, 0,R0482,1,VAT,0042.6, -$TSMES,27/11/13,12:11:21.956,BLTNK, 0,R0482,1,VAT,0044.0, -$TSMES,27/11/13,12:13:43.666,BLTNK,-1,R0482,1,VAT,0045.2, -$TSMES,27/11/13,12:15:11.401,BLTNK,-1,R0482,1,VAT,0043.5, -$TSMES,27/11/13,12:16:59.327,BLTNK, 0,R0482,1,VAT,0045.3, -$TSMES,27/11/13,12:23:10.921,BLTNK, 0,R0482,1,VAT,0043.8, -$TSMES,27/11/13,12:25:31.204,BLTNK, 0,R0482,1,VAT,0046.4, -$TSMES,27/11/13,12:26:34.685,BLTNK, 0,R0482,1,VAT,0046.1, -$TSMES,27/11/13,12:28:25.995,BLTNK, 0,R0482,1,VAT,0046.0, -$TSMES,27/11/13,12:32:28.875,BLTNK, 0,R0482,1,VAT,0046.0, -$TSMES,27/11/13,12:34:31.332,BLTNK, 0,R0482,1,VAT,0050.7, -$TSMES,27/11/13,12:37:08.304,BLTNK, 0,R0482,1,VAT,0045.2, -$TSMES,27/11/13,12:38:45.284,BLTNK, 0,R0482,1,VAT,0043.0, -$TSMES,27/11/13,12:40:05.862,BLTNK, 0,R0482,1,VAT,0044.6, -$TSMES,27/11/13,12:41:48.358,BLTNK, 0,R0482,1,VAT,0046.3, -$TSMES,27/11/13,12:43:25.952,BLTNK, 0,R0482,1,VAT,0046.3, -$TSMES,27/11/13,12:45:08.656,BLTNK, 0,R0482,1,VAT,0048.0, -$TSMES,27/11/13,12:47:16.330,BLTNK, 0,R0482,1,VAT,0045.6, -$TSMES,27/11/13,12:50:11.853,BLTNK,-1,R0482,1,VAT,0046.4, -$TSMES,27/11/13,12:54:11.280,BLTNK, 0,R0482,1,VAT,0044.6, -$TSMES,27/11/13,12:56:04.995,BLTNK, 0,R0482,1,VAT,0049.2, -$TSMES,27/11/13,12:57:07.161,BLTNK, 0,R0482,1,VAT,0040.9, -$TSMES,27/11/13,12:58:07.564,BLTNK, 0,R0482,1,VAT,0042.8, -$TSMES,27/11/13,12:59:10.843,BLTNK, 0,R0482,1,VAT,0041.2, -$TSMES,27/11/13,13:09:10.060,BLTNK, 0,R0482,1,VAT,0043.0, -$TSMES,27/11/13,13:11:01.570,BLTNK, 0,R0482,1,VAT,0046.8, -$TSMES,27/11/13,13:12:27.276,BLTNK, 0,R0482,1,VAT,0045.8, -$TSMES,27/11/13,13:14:58.308,BLTNK, 0,R0482,1,VAT,0043.4, -$TSMES,27/11/13,13:17:16.558,BLTNK, 0,R0482,1,VAT,0047.4, -$TSMES,27/11/13,13:18:53.624,BLTNK, 0,R0482,1,VAT,0044.2, -$TSMES,27/11/13,13:21:47.998,BLTNK, 0,R0482,1,VAT,0050.2, -$TSMES,27/11/13,13:24:51.176,BLTNK, 0,R0482,1,VAT,0047.4, -$TSMES,27/11/13,13:27:50.882,BLTNK, 0,R0482,1,VAT,0045.6, -$TSMES,27/11/13,13:29:07.983,BLTNK, 0,R0482,1,VAT,0044.9, -$TSMES,27/11/13,13:32:21.819,BLTNK, 0,R0482,1,VAT,0047.2, -$TSMES,27/11/13,13:34:12.304,BLTNK, 0,R0482,1,VAT,0046.1, -$TSMES,27/11/13,13:35:59.627,BLTNK, 0,R0482,1,VAT,0009.7, -$TSMES,27/11/13,15:00:25.110,BLTNK, 0,R0483,1,VAT,0044.8, -$TSMES,27/11/13,15:02:37.403,BLTNK, 0,R0483,1,VAT,0043.0, -$TSMES,27/11/13,15:04:24.302,BLTNK, 0,R0483,1,VAT,0045.7, -$TSMES,27/11/13,15:06:10.284,BLTNK, 0,R0483,1,VAT,0043.5, -$TSMES,27/11/13,15:07:39.675,BLTNK, 0,R0483,1,VAT,0046.0, -$TSMES,27/11/13,15:09:12.136,BLTNK, 0,R0483,1,VAT,0046.8, -$TSMES,27/11/13,15:12:51.981,BLTNK, 0,R0483,1,VAT,0044.7, -$TSMES,27/11/13,15:14:31.819,BLTNK, 0,R0483,1,VAT,0042.9, -$TSMES,27/11/13,15:15:30.692,BLTNK, 0,R0483,1,VAT,0044.2, -$TSMES,27/11/13,15:16:48.616,BLTNK, 0,R0483,1,VAT,0046.5, -$TSMES,27/11/13,15:18:09.200,BLTNK, 0,R0483,1,VAT,0044.1, -$TSMES,27/11/13,15:19:57.739,BLTNK, 0,R0483,1,VAT,0045.3, -$TSMES,27/11/13,15:22:06.859,BLTNK, 0,R0483,1,VAT,0042.8, -$TSMES,27/11/13,15:23:50.486,BLTNK, 0,R0483,1,VAT,0044.3, -$TSMES,27/11/13,15:25:40.151,BLTNK, 0,R0483,1,VAT,0042.1, -$TSMES,27/11/13,15:27:58.998,BLTNK, 0,R0483,1,VAT,0043.2, -$TSMES,27/11/13,15:29:58.390,BLTNK, 0,R0483,1,VAT,0045.9, -$TSMES,27/11/13,15:31:36.691,BLTNK, 0,R0483,1,VAT,0045.8, -$TSMES,27/11/13,15:34:30.965,BLTNK, 0,R0483,1,VAT,0041.5, -$TSMES,27/11/13,15:37:02.307,BLTNK, 0,R0483,1,VAT,0047.2, -$TSMES,27/11/13,15:39:44.502,BLTNK, 0,R0483,1,VAT,0047.8, -$TSMES,27/11/13,15:42:40.825,BLTNK, 0,R0483,1,VAT,0043.4, -$TSMES,27/11/13,15:43:59.669,BLTNK, 0,R0483,1,VAT,0041.2, -$TSMES,27/11/13,15:45:48.106,BLTNK, 0,R0483,1,VAT,0045.1, -$TSMES,27/11/13,15:46:57.635,BLTNK, 0,R0483,1,VAT,0044.1, -$TSMES,27/11/13,15:48:15.557,BLTNK, 0,R0483,1,VAT,0042.8, -$TSMES,27/11/13,15:49:27.850,BLTNK, 0,R0483,1,VAT,0043.6, -$TSMES,27/11/13,15:50:53.655,BLTNK, 0,R0483,1,VAT,0045.9, -$TSMES,27/11/13,15:52:37.073,BLTNK, 0,R0483,1,VAT,0045.6, -$TSMES,27/11/13,15:54:32.985,BLTNK, 0,R0483,1,VAT,0045.9, -$TSMES,27/11/13,15:56:22.345,BLTNK, 0,R0483,1,VAT,0045.1, -$TSMES,27/11/13,15:58:09.594,BLTNK, 0,R0483,1,VAT,0047.0, -$TSMES,27/11/13,16:00:11.605,BLTNK, 0,R0483,1,VAT,0049.6, -$TSMES,27/11/13,16:01:44.993,BLTNK, 0,R0483,1,VAT,0048.7, -$TSMES,27/11/13,16:02:59.022,BLTNK, 0,R0483,1,VAT,0002.0, -$TSMES,27/11/13,17:07:25.365,BLTNK, 0,X0001,1,VAT,0004.9, -$TSMES,27/11/13,17:07:55.368,BLTNK, 0,X0001,1,VAT,0008.1, -$TSMES,27/11/13,17:08:34.277,BLTNK, 0,X0001,1,VAT,0010.7, -$TSMES,27/11/13,17:09:20.254,BLTNK, 0,X0001,1,VAT,0010.8, -$TSMES,27/11/13,17:10:02.032,BLTNK, 0,X0001,1,VAT,0010.1, -$TSMES,27/11/13,17:24:37.302,BLTNK, 0,X0002,1,VAT,0007.1, -$TSMES,27/11/13,17:30:28.420,BLTNK, 0,R0484,1,VAT,0046.9, -$TSMES,27/11/13,17:31:39.582,BLTNK, 0,R0484,1,VNT,0048.7, -$TSMES,27/11/13,18:25:31.485,BLTNK,-1,R0484,1,VNT,-000.1, -$TSMES,27/11/13,18:36:52.526,BLTNK, 0,R0484,1,VNT,0050.7, -$TSMES,27/11/13,18:40:06.918,BLTNK, 0,R0484,1,VAT,0052.3, -$TSMES,27/11/13,18:41:09.838,BLTNK, 0,R0484,1,VNT,0042.8, -$TSMES,27/11/13,18:42:25.816,BLTNK, 0,R0484,1,VNT,0041.2, -$TSMES,27/11/13,18:43:31.552,BLTNK, 0,R0484,1,VNT,0044.4, -$TSMES,27/11/13,18:44:40.157,BLTNK, 0,R0484,1,VAT,0044.9, -$TSMES,27/11/13,18:46:01.666,BLTNK, 0,R0484,1,VNT,0055.3, -$TSMES,27/11/13,18:46:46.412,BLTNK, 0,R0484,1,VNT,0045.8, -$TSMES,27/11/13,18:47:39.146,BLTNK, 0,R0484,1,VNT,0045.1, -$TSMES,27/11/13,18:48:38.741,BLTNK, 0,R0484,1,VAT,0045.6, -$TSMES,27/11/13,18:50:46.533,BLTNK, 0,R0484,1,VNT,0044.5, -$TSMES,27/11/13,18:51:31.485,BLTNK, 0,R0484,1,VNT,0043.6, -$TSMES,27/11/13,18:52:15.619,BLTNK, 0,R0484,1,VNT,0045.1, -$TSMES,27/11/13,18:53:01.588,BLTNK, 0,R0484,1,VAT,0046.7, -$TSMES,27/11/13,18:54:15.725,BLTNK, 0,R0484,1,VNT,0045.1, -$TSMES,27/11/13,18:55:55.559,BLTNK, 0,R0484,1,VNT,0045.7, -$TSMES,27/11/13,18:56:41.434,BLTNK, 0,R0484,1,VNT,0047.9, -$TSMES,27/11/13,18:59:41.649,BLTNK, 0,R0484,1,VAT,0045.3, -$TSMES,27/11/13,19:01:24.349,BLTNK, 0,R0484,1,VNT,0047.0, -$TSMES,27/11/13,19:02:31.112,BLTNK, 0,R0484,1,VNT,0045.2, -$TSMES,27/11/13,19:04:19.036,BLTNK, 0,R0484,1,VNT,0045.3, -$TSMES,27/11/13,19:05:39.010,BLTNK, 0,R0484,1,VAT,0048.6, -$TSMES,27/11/13,19:07:07.066,BLTNK, 0,R0484,1,VNT,0049.1, -$TSMES,27/11/13,19:07:47.001,BLTNK, 0,R0484,1,VNT,0042.7, -$TSMES,27/11/13,19:08:31.646,BLTNK, 0,R0484,1,VNT,0046.7, -$TSMES,27/11/13,19:09:18.030,BLTNK, 0,R0484,1,VAT,0046.4, -$TSMES,27/11/13,19:10:11.686,BLTNK, 0,R0484,1,VNT,0048.0, -$TSMES,27/11/13,19:10:57.668,BLTNK, 0,R0484,1,VNT,0045.6, -$TSMES,27/11/13,19:11:44.968,BLTNK, 0,R0484,1,VNT,0048.1, -$TSMES,27/11/13,19:15:02.592,BLTNK, 0,R0484,1,VAT,0040.2, -$TSMES,27/11/13,19:16:20.308,BLTNK, 0,R0484,1,VNT,0003.7, +$TSMES,27/11/13,09:08:45.130,BLTNK, 0,A,1,VAT,0045.4, +$TSMES,27/11/13,09:10:10.522,BLTNK, 0,A,1,VAT,0045.0, +$TSMES,27/11/13,09:12:14.730,BLTNK, 0,A,1,VAT,0043.9, +$TSMES,27/11/13,09:14:06.033,BLTNK, 0,A,1,VAT,0044.0, +$TSMES,27/11/13,09:16:08.907,BLTNK, 0,A,1,VAT,0042.4, +$TSMES,27/11/13,09:17:47.515,BLTNK, 0,A,1,VAT,0044.3, +$TSMES,27/11/13,09:19:44.039,BLTNK, 0,A,1,VAT,0043.6, +$TSMES,27/11/13,09:21:49.166,BLTNK, 0,A,1,VAT,0044.2, +$TSMES,27/11/13,09:26:57.681,BLTNK, 0,A,1,VAT,0045.9, +$TSMES,27/11/13,09:29:20.020,BLTNK, 0,A,1,VAT,0045.8, +$TSMES,27/11/13,09:30:37.535,BLTNK, 0,A,1,VAT,0047.0, +$TSMES,27/11/13,09:32:16.153,BLTNK, 0,A,1,VAT,0046.6, +$TSMES,27/11/13,09:33:30.882,BLTNK, 0,A,1,VAT,0044.4, +$TSMES,27/11/13,09:34:50.649,BLTNK, 0,A,1,VAT,0044.5, +$TSMES,27/11/13,09:36:36.933,BLTNK, 0,A,1,VAT,0043.7, +$TSMES,27/11/13,09:37:53.424,BLTNK, 0,A,1,VAT,0046.4, +$TSMES,27/11/13,09:41:40.944,BLTNK, 0,A,1,VAT,0048.6, +$TSMES,27/11/13,09:43:33.377,BLTNK, 0,A,1,VAT,0046.4, +$TSMES,27/11/13,09:44:46.487,BLTNK, 0,A,1,VAT,0046.4, +$TSMES,27/11/13,09:46:12.192,BLTNK, 0,A,1,VAT,0045.2, +$TSMES,27/11/13,09:47:34.846,BLTNK, 0,A,1,VAT,0045.4, +$TSMES,27/11/13,09:48:55.920,BLTNK, 0,A,1,VAT,0048.4, +$TSMES,27/11/13,09:51:12.724,BLTNK, 0,A,1,VAT,0046.4, +$TSMES,27/11/13,09:54:14.063,BLTNK, 0,A,1,VAT,0040.4, +$TSMES,27/11/13,09:56:11.000,BLTNK, 0,A,1,VAT,0044.2, +$TSMES,27/11/13,09:57:38.344,BLTNK, 0,A,1,VAT,0047.3, +$TSMES,27/11/13,09:59:23.603,BLTNK, 0,A,1,VAT,0047.6, +$TSMES,27/11/13,10:00:51.868,BLTNK, 0,A,1,VAT,0047.9, +$TSMES,27/11/13,10:02:29.655,BLTNK, 0,A,1,VAT,0044.2, +$TSMES,27/11/13,10:04:14.101,BLTNK, 0,A,1,VAT,0045.9, +$TSMES,27/11/13,10:06:08.886,BLTNK, 0,A,1,VAT,0043.2, +$TSMES,27/11/13,10:08:35.000,BLTNK, 0,A,1,VAT,0007.5, +$TSMES,27/11/13,12:02:28.762,BLTNK, 0,R0482,1,VAT,0043.5, +$TSMES,27/11/13,12:04:44.125,BLTNK, 0,R0482,1,VAT,0046.8, +$TSMES,27/11/13,12:06:40.650,BLTNK, 0,R0482,1,VAT,0043.0, +$TSMES,27/11/13,12:07:46.288,BLTNK, 0,R0482,1,VAT,0045.0, +$TSMES,27/11/13,12:09:09.246,BLTNK, 0,R0482,1,VAT,0043.3, +$TSMES,27/11/13,12:10:12.001,BLTNK, 0,R0482,1,VAT,0042.6, +$TSMES,27/11/13,12:11:21.956,BLTNK, 0,R0482,1,VAT,0044.0, +$TSMES,27/11/13,12:13:43.666,BLTNK,-1,R0482,1,VAT,0045.2, +$TSMES,27/11/13,12:15:11.401,BLTNK,-1,R0482,1,VAT,0043.5, +$TSMES,27/11/13,12:16:59.327,BLTNK, 0,R0482,1,VAT,0045.3, +$TSMES,27/11/13,12:23:10.921,BLTNK, 0,R0482,1,VAT,0043.8, +$TSMES,27/11/13,12:25:31.204,BLTNK, 0,R0482,1,VAT,0046.4, +$TSMES,27/11/13,12:26:34.685,BLTNK, 0,R0482,1,VAT,0046.1, +$TSMES,27/11/13,12:28:25.995,BLTNK, 0,R0482,1,VAT,0046.0, +$TSMES,27/11/13,12:32:28.875,BLTNK, 0,R0482,1,VAT,0046.0, +$TSMES,27/11/13,12:34:31.332,BLTNK, 0,R0482,1,VAT,0050.7, +$TSMES,27/11/13,12:37:08.304,BLTNK, 0,R0482,1,VAT,0045.2, +$TSMES,27/11/13,12:38:45.284,BLTNK, 0,R0482,1,VAT,0043.0, +$TSMES,27/11/13,12:40:05.862,BLTNK, 0,R0482,1,VAT,0044.6, +$TSMES,27/11/13,12:41:48.358,BLTNK, 0,R0482,1,VAT,0046.3, +$TSMES,27/11/13,12:43:25.952,BLTNK, 0,R0482,1,VAT,0046.3, +$TSMES,27/11/13,12:45:08.656,BLTNK, 0,R0482,1,VAT,0048.0, +$TSMES,27/11/13,12:47:16.330,BLTNK, 0,R0482,1,VAT,0045.6, +$TSMES,27/11/13,12:50:11.853,BLTNK,-1,R0482,1,VAT,0046.4, +$TSMES,27/11/13,12:54:11.280,BLTNK, 0,R0482,1,VAT,0044.6, +$TSMES,27/11/13,12:56:04.995,BLTNK, 0,R0482,1,VAT,0049.2, +$TSMES,27/11/13,12:57:07.161,BLTNK, 0,R0482,1,VAT,0040.9, +$TSMES,27/11/13,12:58:07.564,BLTNK, 0,R0482,1,VAT,0042.8, +$TSMES,27/11/13,12:59:10.843,BLTNK, 0,R0482,1,VAT,0041.2, +$TSMES,27/11/13,13:09:10.060,BLTNK, 0,R0482,1,VAT,0043.0, +$TSMES,27/11/13,13:11:01.570,BLTNK, 0,R0482,1,VAT,0046.8, +$TSMES,27/11/13,13:12:27.276,BLTNK, 0,R0482,1,VAT,0045.8, +$TSMES,27/11/13,13:14:58.308,BLTNK, 0,R0482,1,VAT,0043.4, +$TSMES,27/11/13,13:17:16.558,BLTNK, 0,R0482,1,VAT,0047.4, +$TSMES,27/11/13,13:18:53.624,BLTNK, 0,R0482,1,VAT,0044.2, +$TSMES,27/11/13,13:21:47.998,BLTNK, 0,R0482,1,VAT,0050.2, +$TSMES,27/11/13,13:24:51.176,BLTNK, 0,R0482,1,VAT,0047.4, +$TSMES,27/11/13,13:27:50.882,BLTNK, 0,R0482,1,VAT,0045.6, +$TSMES,27/11/13,13:29:07.983,BLTNK, 0,R0482,1,VAT,0044.9, +$TSMES,27/11/13,13:32:21.819,BLTNK, 0,R0482,1,VAT,0047.2, +$TSMES,27/11/13,13:34:12.304,BLTNK, 0,R0482,1,VAT,0046.1, +$TSMES,27/11/13,13:35:59.627,BLTNK, 0,R0482,1,VAT,0009.7, +$TSMES,27/11/13,15:00:25.110,BLTNK, 0,R0483,1,VAT,0044.8, +$TSMES,27/11/13,15:02:37.403,BLTNK, 0,R0483,1,VAT,0043.0, +$TSMES,27/11/13,15:04:24.302,BLTNK, 0,R0483,1,VAT,0045.7, +$TSMES,27/11/13,15:06:10.284,BLTNK, 0,R0483,1,VAT,0043.5, +$TSMES,27/11/13,15:07:39.675,BLTNK, 0,R0483,1,VAT,0046.0, +$TSMES,27/11/13,15:09:12.136,BLTNK, 0,R0483,1,VAT,0046.8, +$TSMES,27/11/13,15:12:51.981,BLTNK, 0,R0483,1,VAT,0044.7, +$TSMES,27/11/13,15:14:31.819,BLTNK, 0,R0483,1,VAT,0042.9, +$TSMES,27/11/13,15:15:30.692,BLTNK, 0,R0483,1,VAT,0044.2, +$TSMES,27/11/13,15:16:48.616,BLTNK, 0,R0483,1,VAT,0046.5, +$TSMES,27/11/13,15:18:09.200,BLTNK, 0,R0483,1,VAT,0044.1, +$TSMES,27/11/13,15:19:57.739,BLTNK, 0,R0483,1,VAT,0045.3, +$TSMES,27/11/13,15:22:06.859,BLTNK, 0,R0483,1,VAT,0042.8, +$TSMES,27/11/13,15:23:50.486,BLTNK, 0,R0483,1,VAT,0044.3, +$TSMES,27/11/13,15:25:40.151,BLTNK, 0,R0483,1,VAT,0042.1, +$TSMES,27/11/13,15:27:58.998,BLTNK, 0,R0483,1,VAT,0043.2, +$TSMES,27/11/13,15:29:58.390,BLTNK, 0,R0483,1,VAT,0045.9, +$TSMES,27/11/13,15:31:36.691,BLTNK, 0,R0483,1,VAT,0045.8, +$TSMES,27/11/13,15:34:30.965,BLTNK, 0,R0483,1,VAT,0041.5, +$TSMES,27/11/13,15:37:02.307,BLTNK, 0,R0483,1,VAT,0047.2, +$TSMES,27/11/13,15:39:44.502,BLTNK, 0,R0483,1,VAT,0047.8, +$TSMES,27/11/13,15:42:40.825,BLTNK, 0,R0483,1,VAT,0043.4, +$TSMES,27/11/13,15:43:59.669,BLTNK, 0,R0483,1,VAT,0041.2, +$TSMES,27/11/13,15:45:48.106,BLTNK, 0,R0483,1,VAT,0045.1, +$TSMES,27/11/13,15:46:57.635,BLTNK, 0,R0483,1,VAT,0044.1, +$TSMES,27/11/13,15:48:15.557,BLTNK, 0,R0483,1,VAT,0042.8, +$TSMES,27/11/13,15:49:27.850,BLTNK, 0,R0483,1,VAT,0043.6, +$TSMES,27/11/13,15:50:53.655,BLTNK, 0,R0483,1,VAT,0045.9, +$TSMES,27/11/13,15:52:37.073,BLTNK, 0,R0483,1,VAT,0045.6, +$TSMES,27/11/13,15:54:32.985,BLTNK, 0,R0483,1,VAT,0045.9, +$TSMES,27/11/13,15:56:22.345,BLTNK, 0,R0483,1,VAT,0045.1, +$TSMES,27/11/13,15:58:09.594,BLTNK, 0,R0483,1,VAT,0047.0, +$TSMES,27/11/13,16:00:11.605,BLTNK, 0,R0483,1,VAT,0049.6, +$TSMES,27/11/13,16:01:44.993,BLTNK, 0,R0483,1,VAT,0048.7, +$TSMES,27/11/13,16:02:59.022,BLTNK, 0,R0483,1,VAT,0002.0, +$TSMES,27/11/13,17:07:25.365,BLTNK, 0,X0001,1,VAT,0004.9, +$TSMES,27/11/13,17:07:55.368,BLTNK, 0,X0001,1,VAT,0008.1, +$TSMES,27/11/13,17:08:34.277,BLTNK, 0,X0001,1,VAT,0010.7, +$TSMES,27/11/13,17:09:20.254,BLTNK, 0,X0001,1,VAT,0010.8, +$TSMES,27/11/13,17:10:02.032,BLTNK, 0,X0001,1,VAT,0010.1, +$TSMES,27/11/13,17:24:37.302,BLTNK, 0,X0002,1,VAT,0007.1, +$TSMES,27/11/13,17:30:28.420,BLTNK, 0,R0484,1,VAT,0046.9, +$TSMES,27/11/13,17:31:39.582,BLTNK, 0,R0484,1,VNT,0048.7, +$TSMES,27/11/13,18:25:31.485,BLTNK,-1,R0484,1,VNT,-000.1, +$TSMES,27/11/13,18:36:52.526,BLTNK, 0,R0484,1,VNT,0050.7, +$TSMES,27/11/13,18:40:06.918,BLTNK, 0,R0484,1,VAT,0052.3, +$TSMES,27/11/13,18:41:09.838,BLTNK, 0,R0484,1,VNT,0042.8, +$TSMES,27/11/13,18:42:25.816,BLTNK, 0,R0484,1,VNT,0041.2, +$TSMES,27/11/13,18:43:31.552,BLTNK, 0,R0484,1,VNT,0044.4, +$TSMES,27/11/13,18:44:40.157,BLTNK, 0,R0484,1,VAT,0044.9, +$TSMES,27/11/13,18:46:01.666,BLTNK, 0,R0484,1,VNT,0055.3, +$TSMES,27/11/13,18:46:46.412,BLTNK, 0,R0484,1,VNT,0045.8, +$TSMES,27/11/13,18:47:39.146,BLTNK, 0,R0484,1,VNT,0045.1, +$TSMES,27/11/13,18:48:38.741,BLTNK, 0,R0484,1,VAT,0045.6, +$TSMES,27/11/13,18:50:46.533,BLTNK, 0,R0484,1,VNT,0044.5, +$TSMES,27/11/13,18:51:31.485,BLTNK, 0,R0484,1,VNT,0043.6, +$TSMES,27/11/13,18:52:15.619,BLTNK, 0,R0484,1,VNT,0045.1, +$TSMES,27/11/13,18:53:01.588,BLTNK, 0,R0484,1,VAT,0046.7, +$TSMES,27/11/13,18:54:15.725,BLTNK, 0,R0484,1,VNT,0045.1, +$TSMES,27/11/13,18:55:55.559,BLTNK, 0,R0484,1,VNT,0045.7, +$TSMES,27/11/13,18:56:41.434,BLTNK, 0,R0484,1,VNT,0047.9, +$TSMES,27/11/13,18:59:41.649,BLTNK, 0,R0484,1,VAT,0045.3, +$TSMES,27/11/13,19:01:24.349,BLTNK, 0,R0484,1,VNT,0047.0, +$TSMES,27/11/13,19:02:31.112,BLTNK, 0,R0484,1,VNT,0045.2, +$TSMES,27/11/13,19:04:19.036,BLTNK, 0,R0484,1,VNT,0045.3, +$TSMES,27/11/13,19:05:39.010,BLTNK, 0,R0484,1,VAT,0048.6, +$TSMES,27/11/13,19:07:07.066,BLTNK, 0,R0484,1,VNT,0049.1, +$TSMES,27/11/13,19:07:47.001,BLTNK, 0,R0484,1,VNT,0042.7, +$TSMES,27/11/13,19:08:31.646,BLTNK, 0,R0484,1,VNT,0046.7, +$TSMES,27/11/13,19:09:18.030,BLTNK, 0,R0484,1,VAT,0046.4, +$TSMES,27/11/13,19:10:11.686,BLTNK, 0,R0484,1,VNT,0048.0, +$TSMES,27/11/13,19:10:57.668,BLTNK, 0,R0484,1,VNT,0045.6, +$TSMES,27/11/13,19:11:44.968,BLTNK, 0,R0484,1,VNT,0048.1, +$TSMES,27/11/13,19:15:02.592,BLTNK, 0,R0484,1,VAT,0040.2, +$TSMES,27/11/13,19:16:20.308,BLTNK, 0,R0484,1,VNT,0003.7, Property changes on: trunk/tutti-service/src/test/resources/pupitri/ano-3898.tnk ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Modified: trunk/tutti-service/src/test/resources/pupitri/ano-3898.tuttiProtocol =================================================================== --- trunk/tutti-service/src/test/resources/pupitri/ano-3898.tuttiProtocol 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-service/src/test/resources/pupitri/ano-3898.tuttiProtocol 2013-12-10 21:47:43 UTC (rev 1461) @@ -1,4787 +1,4787 @@ -id: c6ee2088-9720-46c0-b8d2-8f21c902676f -name: Protocole EVHOE 2013 -benthos: -- !SpeciesProtocol - id: f9572cb1-908a-4c2f-a402-2ab57de3c1bf - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7 - speciesSurveyCode: MBPORIF - weightEnabled: true -- !SpeciesProtocol - id: f7330ac2-577e-4814-b2de-9be7bb7de70e - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6129 - speciesSurveyCode: AXININF - weightEnabled: true -- !SpeciesProtocol - id: a0ec7f90-14e9-46aa-84cd-c3da82d81884 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4656 - speciesSurveyCode: SUBEFIC - weightEnabled: true -- !SpeciesProtocol - id: 49cba43a-786b-429e-ba70-77c412ff73bf - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 12027 - speciesSurveyCode: DESMFRU - weightEnabled: true -- !SpeciesProtocol - id: e61064f4-6432-47d1-81c2-276300395720 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 12 - speciesSurveyCode: CLHYDRZ - weightEnabled: true -- !SpeciesProtocol - id: 3e95c944-ec00-4784-9d8d-e6e6200b8c07 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4622 - speciesSurveyCode: ABIEABI - weightEnabled: true -- !SpeciesProtocol - id: 9c9a0160-e573-4e04-a9b0-849dd5b3de1b - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4685 - speciesSurveyCode: HYDAFAL - weightEnabled: true -- !SpeciesProtocol - id: 2670fa1e-9915-43d7-8023-6d0829e1128d - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4682 - speciesSurveyCode: NEMEANT - weightEnabled: true -- !SpeciesProtocol - id: cbd96316-f579-41e3-ace3-604ab169f268 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4667 - speciesSurveyCode: NEMERAM - weightEnabled: true -- !SpeciesProtocol - id: 7427a1b3-8dce-4cda-aa42-783a6c52d1d9 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4736 - speciesSurveyCode: HLECHAL - weightEnabled: true -- !SpeciesProtocol - id: d62953c3-3eb0-49e6-a601-6049f50bbe3f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 131 - speciesSurveyCode: CLANTHO - weightEnabled: true -- !SpeciesProtocol - id: 991bbe6f-69c3-4488-ae54-4f2f90315758 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4386 - speciesSurveyCode: ALCYGLO - weightEnabled: true -- !SpeciesProtocol - id: a5c99610-2593-4053-bb3c-2d4055c66f56 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3021 - speciesSurveyCode: ALCYDIG - weightEnabled: true -- !SpeciesProtocol - id: e4de06d8-e2b6-4d3b-8d36-891252ce6ef7 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6804 - speciesSurveyCode: FUNIQUA - weightEnabled: true -- !SpeciesProtocol - id: 40e2c5ab-3e03-44b9-aea0-e6a88dec9229 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3949 - speciesSurveyCode: VERE - weightEnabled: true -- !SpeciesProtocol - id: a13b8659-7ce9-4a53-b2e3-bd9d1b1257e1 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 134 - speciesSurveyCode: PENNPHO - weightEnabled: true -- !SpeciesProtocol - id: d4891eac-60e6-4b83-8372-d7324b0bd04a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3006 - speciesSurveyCode: PRTOGRI - weightEnabled: true -- !SpeciesProtocol - id: fb048cd5-3a12-4aab-8d23-c95bc6370dff - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2224 - speciesSurveyCode: ORACTIN - weightEnabled: true -- !SpeciesProtocol - id: b74d2b06-c0f1-4e32-a817-73603e45c1a4 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4734 - speciesSurveyCode: URTIEQU - weightEnabled: true -- !SpeciesProtocol - id: 564604d6-8f84-467d-a4fc-ceb3fc763093 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4623 - speciesSurveyCode: ACTU - weightEnabled: true -- !SpeciesProtocol - id: ebc2c884-d9c3-4eed-b362-85905bcbc206 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4626 - speciesSurveyCode: ADAMCAR - weightEnabled: true -- !SpeciesProtocol - id: 1a816d62-cd4a-4191-9352-14cf35a76a55 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4378 - speciesSurveyCode: CLLCPAR - weightEnabled: true -- !SpeciesProtocol - id: ecc5c8af-6ff0-4372-b7f8-d5e8d9eb8211 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4412 - speciesSurveyCode: METRSEN - weightEnabled: true -- !SpeciesProtocol - id: b161e1c7-02e1-4204-ae4c-52ded8cd94cd - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4731 - speciesSurveyCode: ORSCLER - weightEnabled: true -- !SpeciesProtocol - id: c1005695-f40c-4933-8e55-e3fa6dce19b4 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4385 - speciesSurveyCode: CARYSMI - weightEnabled: true -- !SpeciesProtocol - id: 87e8c1b6-dada-4ed4-8765-91964ed4a6cb - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7230 - speciesSurveyCode: MADROCU - weightEnabled: true -- !SpeciesProtocol - id: 9d978f33-96f9-446e-b882-1078ce92246e - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4418 - speciesSurveyCode: EPZAINC - weightEnabled: true -- !SpeciesProtocol - id: 75999a5f-9ac5-430e-8a44-a0bd8bb283a2 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7327 - speciesSurveyCode: EPZAPAG - weightEnabled: true -- !SpeciesProtocol - id: b55d7c7f-4e51-432c-9bcf-1e7eb526d20d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 142 - speciesSurveyCode: MBNEMRT - weightEnabled: true -- !SpeciesProtocol - id: 7936fcee-1226-48f1-ab58-b29851edd391 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 145 - speciesSurveyCode: MBSIPUN - weightEnabled: true -- !SpeciesProtocol - id: 77b81959-a3e0-4f2c-957c-f90e3694ebbf - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 147 - speciesSurveyCode: SIPUNUD - weightEnabled: true -- !SpeciesProtocol - id: a25e6dd1-80b6-4907-8738-7d2342f81cca - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 150 - speciesSurveyCode: MBANNEL - weightEnabled: true -- !SpeciesProtocol - id: c568e73b-bf73-4732-92c2-8aeb551a32c1 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 155 - speciesSurveyCode: APHRACU - weightEnabled: true -- !SpeciesProtocol - id: 10607c6b-0111-4535-bdb4-fd0329f6a6a3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4298 - speciesSurveyCode: LAET - weightEnabled: true -- !SpeciesProtocol - id: 66be114c-9b29-4f81-98ed-4643804a0735 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3240 - speciesSurveyCode: DIOPNEA - weightEnabled: true -- !SpeciesProtocol - id: e928f552-cbd4-4c4d-b39a-766727e52a06 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3241 - speciesSurveyCode: HYALTUB - weightEnabled: true -- !SpeciesProtocol - id: 240e91fd-43d5-43a1-a9af-3acc9536fe2c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7125 - speciesSurveyCode: FMCHAEO - weightEnabled: true -- !SpeciesProtocol - id: 57fc6b5d-7657-41c1-8206-b6291699460b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 211 - speciesSurveyCode: STERSCU - weightEnabled: true -- !SpeciesProtocol - id: ee1469c9-735c-4ba3-805e-d5af019f6fad - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 156 - speciesSurveyCode: OWENFUS - weightEnabled: true -- !SpeciesProtocol - id: be285fa3-8399-4207-842a-35fa33523d3d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 203 - speciesSurveyCode: LANICON - weightEnabled: true -- !SpeciesProtocol - id: 0601fb3a-7dac-483a-a2f8-51e70995e69f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3032 - speciesSurveyCode: FMSABED - weightEnabled: true -- !SpeciesProtocol - id: 779d80e3-3663-499e-9f41-6f88cd4f9058 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 209 - speciesSurveyCode: FMSERPU - weightEnabled: true -- !SpeciesProtocol - id: 78d8ec73-387b-4bb2-b9b1-c5a4c398bcdc - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 224 - speciesSurveyCode: MBBRYOZ - weightEnabled: true -- !SpeciesProtocol - id: 5b860a72-fdbc-4392-9dd8-a52b9c31fadb - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6222 - speciesSurveyCode: FMPHIDO - weightEnabled: true -- !SpeciesProtocol - id: a26765e2-4e3f-471f-a916-9c4d039c469a - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6669 - speciesSurveyCode: PENPFAS - weightEnabled: true -- !SpeciesProtocol - id: 341226be-0057-42e1-b886-06d4359d6666 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4762 - speciesSurveyCode: CELL - weightEnabled: true -- !SpeciesProtocol - id: 827f98c7-3de5-4995-9946-c779cbe358a4 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3549 - speciesSurveyCode: FLUTFOL - weightEnabled: true -- !SpeciesProtocol - id: 74bd6921-0052-4adc-a79f-a795c2856834 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3974 - speciesSurveyCode: ALCD - weightEnabled: true -- !SpeciesProtocol - id: 5980e84e-b812-4a9d-9ba3-60c4b1ab2de8 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4766 - speciesSurveyCode: PORECOM - weightEnabled: true -- !SpeciesProtocol - id: 6ff00ef8-709d-45a1-b810-eeb545e552c7 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3669 - speciesSurveyCode: MBBRACH - weightEnabled: true -- !SpeciesProtocol - id: e84dc3fc-9bbc-4224-97c4-a117a169f0eb - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3671 - speciesSurveyCode: GRYPVIT - weightEnabled: true -- !SpeciesProtocol - id: 72608c33-8ee8-4c6d-9885-22532b57359a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4180 - speciesSurveyCode: TERB - weightEnabled: true -- !SpeciesProtocol - id: dbc82106-26bc-44b8-848c-a015597c6d83 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3670 - speciesSurveyCode: MEGETRU - weightEnabled: true -- !SpeciesProtocol - id: 00a0d87d-9dd5-41d3-9040-3712982e9d88 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 226 - speciesSurveyCode: CLGASTE - weightEnabled: true -- !SpeciesProtocol - id: 7ff88d26-aca5-472c-a3e1-deb445c1ed0e - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 246 - speciesSurveyCode: CALSGRA - weightEnabled: true -- !SpeciesProtocol - id: 475a780d-3dd0-4cec-a349-615c326deaee - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 247 - speciesSurveyCode: CALSZIZ - weightEnabled: true -- !SpeciesProtocol - id: ee6de210-b652-4b03-9c86-94f921f4511a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 250 - speciesSurveyCode: TURRCOM - weightEnabled: true -- !SpeciesProtocol - id: 998eb5ed-5df7-42b5-b270-2937188387ce - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 261 - speciesSurveyCode: APORPES - weightEnabled: true -- !SpeciesProtocol - id: 659013e5-a528-4e14-8051-734c8f347894 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 262 - speciesSurveyCode: APORSER - weightEnabled: true -- !SpeciesProtocol - id: d054d53d-5f87-49bc-bcb7-b0c36f5f0303 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 267 - speciesSurveyCode: CALYCHI - weightEnabled: true -- !SpeciesProtocol - id: 8639ef63-69ce-40e8-89cb-d5bb349eff7b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 268 - speciesSurveyCode: CREPFOR - weightEnabled: true -- !SpeciesProtocol - id: c59679d4-30f6-44e3-b461-e042b40b70d3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6263 - speciesSurveyCode: CAPUUNG - weightEnabled: true -- !SpeciesProtocol - id: e91b7f11-bef7-473e-91c0-d560d586c518 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7104 - speciesSurveyCode: LAMEPER - weightEnabled: true -- !SpeciesProtocol - id: d4d7ad78-1b6d-4680-a65a-154fd4982c5c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 276 - speciesSurveyCode: EUSPCAT - weightEnabled: true -- !SpeciesProtocol - id: 0576dc01-0bb4-44dd-ab5e-6e7976ddf386 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 277 - speciesSurveyCode: EUSPFUS - weightEnabled: true -- !SpeciesProtocol - id: 21e69b1f-6b75-489d-ba03-5beff7a12649 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 281 - speciesSurveyCode: GALERUG - weightEnabled: true -- !SpeciesProtocol - id: 1ef12cf9-4894-4f6f-b8ee-06921987925a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 282 - speciesSurveyCode: PHALSAB - weightEnabled: true -- !SpeciesProtocol - id: 2bbcd850-0b15-441c-8f39-6ab36f01c309 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 287 - speciesSurveyCode: RANEOLE - weightEnabled: true -- !SpeciesProtocol - id: 1835948c-66a2-48b5-b56c-481e00b81bbf - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 293 - speciesSurveyCode: OCENERI - weightEnabled: true -- !SpeciesProtocol - id: e12e1803-a374-4181-96fd-3945e3798297 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 300 - speciesSurveyCode: BUCCUND - weightEnabled: true -- !SpeciesProtocol - id: 5a50a197-7b41-4cdc-99d7-0e1c4069ccf0 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 301 - speciesSurveyCode: BUCCHUM - weightEnabled: true -- !SpeciesProtocol - id: 2a0fc2bd-c4d2-48a0-9c2a-ed7c6ff2b1f5 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4253 - speciesSurveyCode: COLUGRA - weightEnabled: true -- !SpeciesProtocol - id: e9095d5a-6340-4b22-b2d1-de5ecbab96eb - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4405 - speciesSurveyCode: NEPUANT - weightEnabled: true -- !SpeciesProtocol - id: 3037759d-878e-4ac0-a06c-2cbfa4c80dde - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 305 - speciesSurveyCode: NASSRET - weightEnabled: true -- !SpeciesProtocol - id: bea4972d-50ad-4563-bd42-3bd2c0b60170 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 317 - speciesSurveyCode: PHILAPE - weightEnabled: true -- !SpeciesProtocol - id: 4382f78b-a28d-4fa8-aa55-af116cdd5047 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 318 - speciesSurveyCode: SCAHLIG - weightEnabled: true -- !SpeciesProtocol - id: b64f8c5d-2b2a-499d-95b4-30ef2ee35f45 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7098 - speciesSurveyCode: GATORUB - weightEnabled: true -- !SpeciesProtocol - id: 7bd9fb57-e14a-44f8-b0f2-04bc3f93ef7c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7486 - speciesSurveyCode: BERTPLU - weightEnabled: true -- !SpeciesProtocol - id: 7596edc7-e788-4f3a-822e-3071711abb59 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4209 - speciesSurveyCode: PLBRMEM - weightEnabled: true -- !SpeciesProtocol - id: 6bf23aaf-f9ef-4e66-8f3c-5a4c594f3c06 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3200 - speciesSurveyCode: APLY - weightEnabled: true -- !SpeciesProtocol - id: ea0b62ec-a8ac-4193-b196-c4f22ccea71f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 326 - speciesSurveyCode: DORSPSD - weightEnabled: true -- !SpeciesProtocol - id: f340c1a9-81e9-415d-8350-2a4d5c223364 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2418 - speciesSurveyCode: JORUTOM - weightEnabled: true -- !SpeciesProtocol - id: 1b1e6316-c254-4f97-96dd-8e90dcbbdcf4 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 11779 - speciesSurveyCode: ROSARUB - weightEnabled: true -- !SpeciesProtocol - id: 15d9660c-6bc4-44d2-bf67-8d97bf36cf9b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7482 - speciesSurveyCode: KALORAM - weightEnabled: true -- !SpeciesProtocol - id: 812dcbcb-8453-40d7-abd4-ea3c864e4e6b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6138 - speciesSurveyCode: DENRFRO - weightEnabled: true -- !SpeciesProtocol - id: e0aafabc-6716-4a73-8994-0b0a717959e7 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 331 - speciesSurveyCode: ARMILOV - weightEnabled: true -- !SpeciesProtocol - id: 70812dfa-d90a-446c-8f9a-fb20942aa1aa - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7481 - speciesSurveyCode: AOLL - weightEnabled: true -- !SpeciesProtocol - id: 126e779a-91b4-41bb-a456-84276b5e87f3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 336 - speciesSurveyCode: CLBIVAL - weightEnabled: true -- !SpeciesProtocol - id: 820527a9-29d4-4fd9-bb39-a6f8237e235d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 342 - speciesSurveyCode: GLYCGLY - weightEnabled: true -- !SpeciesProtocol - id: 5044499f-251b-432c-ac09-8cf4fc0ea69b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 353 - speciesSurveyCode: ATRIPEC - weightEnabled: true -- !SpeciesProtocol - id: f0229fc7-eff9-4c62-8c9d-a1734eaa24d2 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 355 - speciesSurveyCode: PTERHIR - weightEnabled: true -- !SpeciesProtocol - id: 5140514f-eec6-47da-ad10-11082f679626 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 365 - speciesSurveyCode: AEQUOPE - weightEnabled: true -- !SpeciesProtocol - id: d95ec0fd-c94a-4625-8cc7-b5d6d554558b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6139 - speciesSurveyCode: PALLTIG - weightEnabled: true -- !SpeciesProtocol - id: a744ac7a-774a-4b91-9fe5-ec23f3e81228 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3599 - speciesSurveyCode: PSMUCLA - weightEnabled: true -- !SpeciesProtocol - id: 200f25c0-9e4c-4bbe-a45e-d41f7ba5069a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4297 - speciesSurveyCode: PSMUPES - weightEnabled: true -- !SpeciesProtocol - id: fa5322a7-416d-45f2-acb3-a716b1ef2dd7 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3608 - speciesSurveyCode: FMANOMI - weightEnabled: true -- !SpeciesProtocol - id: 677d0e88-f183-452e-a60b-cc73dfe96d61 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3614 - speciesSurveyCode: NEOPCOC - weightEnabled: true -- !SpeciesProtocol - id: 1b5b4273-73da-4a52-8f06-a86a42f7d99e - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4632 - speciesSurveyCode: ASTASUL - weightEnabled: true -- !SpeciesProtocol - id: 0e692122-b933-4463-ae69-bc9d6240fa89 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 380 - speciesSurveyCode: ACANECH - weightEnabled: true -- !SpeciesProtocol - id: 48213df4-9dc5-40fd-8e34-6a3675083a0e - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 387 - speciesSurveyCode: LAEVCRA - weightEnabled: true -- !SpeciesProtocol - id: 4ac69955-1c65-4b48-83ad-6f9e596ca42c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 394 - speciesSurveyCode: SPISELL - weightEnabled: true -- !SpeciesProtocol - id: 94d7c039-f2b7-4125-934f-1d2ffd71927e - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3643 - speciesSurveyCode: ARCOBAL - weightEnabled: true -- !SpeciesProtocol - id: 21e7af73-0637-4f0e-9058-a03c51b7e3be - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3646 - speciesSurveyCode: ARCTISL - weightEnabled: true -- !SpeciesProtocol - id: 844d5548-53a9-43f8-b469-d11da97f2e50 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 427 - speciesSurveyCode: GLOUHUM - weightEnabled: true -- !SpeciesProtocol - id: df9b9030-a591-4ac0-9e84-7c45e6f6a71c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3015 - speciesSurveyCode: TIMCOVA - weightEnabled: true -- !SpeciesProtocol - id: 77fb3fa3-7a6f-4b1c-84fc-aa6f0b1a0b72 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 440 - speciesSurveyCode: CALLCHI - weightEnabled: true -- !SpeciesProtocol - id: b8642163-14ff-4f0f-9f45-2a22d1121364 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 431 - speciesSurveyCode: VENUCAS - weightEnabled: true -- !SpeciesProtocol - id: 976bd3a1-62d3-4562-9be9-c255ea5e32af - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6674 - speciesSurveyCode: XYLODOR - weightEnabled: true -- !SpeciesProtocol - id: 28c2b344-36c9-4141-9410-e4b12b1d21b1 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 460 - speciesSurveyCode: CLSCAPH - weightEnabled: true -- !SpeciesProtocol - id: dfb31d04-5bf2-4e90-8925-d6446a75ff03 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4397 - speciesSurveyCode: ANTA - weightEnabled: true -- !SpeciesProtocol - id: 778e111b-6404-441d-842c-91a4f447699c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 464 - speciesSurveyCode: CLCEPHA - weightEnabled: true -- !SpeciesProtocol - id: f3475bc0-11a0-4c8a-bce0-1806f6190b90 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 471 - speciesSurveyCode: ROSSMAC - weightEnabled: true -- !SpeciesProtocol - id: 2288ba6b-ffb3-4a61-81cf-a704b4956da6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 470 - speciesSurveyCode: FMSEPIO - weightEnabled: true -- !SpeciesProtocol - id: 4a321c1d-26ba-4edc-ab01-c2ebb7f822f6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 484 - speciesSurveyCode: SEPENEG - weightEnabled: true -- !SpeciesProtocol - id: ddecea1d-c0f3-40c0-8873-82e25c89835c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 486 - speciesSurveyCode: SEPEOWE - weightEnabled: true -- !SpeciesProtocol - id: 49a3ab44-9cfc-42bf-9863-a960967057e3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 475 - speciesSurveyCode: RONDMIN - weightEnabled: true -- !SpeciesProtocol - id: ab9f9d52-535c-46c2-af81-5d592afa17dc - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 478 - speciesSurveyCode: SEPOATL - weightEnabled: true -- !SpeciesProtocol - id: 51a31f61-dc7f-4fcd-b7d9-046f2b424219 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7674 - speciesSurveyCode: SEPOPFE - weightEnabled: true -- !SpeciesProtocol - id: 8918a7b4-5e7c-4601-8b6b-65399304eaa1 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 480 - speciesSurveyCode: SEPOLIG - weightEnabled: true -- !SpeciesProtocol - id: ac483de2-83a1-4452-8010-a8dccfa3d895 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7182 - speciesSurveyCode: SEPOTRI - weightEnabled: true -- !SpeciesProtocol - id: 6ee055e3-6d9c-47d4-8026-072a52947c97 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 528 - speciesSurveyCode: CLPYCNO - weightEnabled: true -- !SpeciesProtocol - id: 909565d8-80bc-485a-9022-844f3e4a868e - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4665 - speciesSurveyCode: PYCNLIT - weightEnabled: true -- !SpeciesProtocol - id: baf3392f-7f10-4a2e-80ce-a16a303f2842 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 712 - speciesSurveyCode: SCCIRIP - weightEnabled: true -- !SpeciesProtocol - id: cdfd0890-fd2a-4022-bf3e-dc3e21d8b4f0 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 715 - speciesSurveyCode: SCALSCA - weightEnabled: true -- !SpeciesProtocol - id: 75f768e2-271c-406a-88bc-090289258791 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6839 - speciesSurveyCode: ORMYSID - weightEnabled: true -- !SpeciesProtocol - id: 6b2f2a8b-9d80-4f1b-91bf-c1cf8dd0f947 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 829 - speciesSurveyCode: ORSTOMA - weightEnabled: true -- !SpeciesProtocol - id: f77bdae5-3f9c-4d6b-a857-caf5283fcb02 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 833 - speciesSurveyCode: RISSDES - weightEnabled: true -- !SpeciesProtocol - id: 8b62f3f1-0b2c-4327-a19a-3cea29efabe9 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 846 - speciesSurveyCode: SODENDR - weightEnabled: true -- !SpeciesProtocol - id: af9b9707-3628-4233-9678-d52481b4a04a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 855 - speciesSurveyCode: PAPELON - weightEnabled: true -- !SpeciesProtocol - id: c19ff412-5590-4b01-9ab5-a08ad7488c9f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 848 - speciesSurveyCode: ARISFOL - weightEnabled: true -- !SpeciesProtocol - id: 7c01089f-035d-44dc-a416-aee55e393cec - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4613 - speciesSurveyCode: ARIAEDW - weightEnabled: true -- !SpeciesProtocol - id: 7e43c401-b395-42de-9d43-ecc47007474c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 858 - speciesSurveyCode: SOLOMEM - weightEnabled: true -- !SpeciesProtocol - id: 8ae9b3ad-5672-4ae8-9493-c0b1ec6457c1 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 862 - speciesSurveyCode: SRGIROB - weightEnabled: true -- !SpeciesProtocol - id: a97cc910-8da7-453d-9f07-e06f707e49b0 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 864 - speciesSurveyCode: IOCARID - weightEnabled: true -- !SpeciesProtocol - id: 31fa415e-0e59-4e60-8c85-41f8ae64d1f0 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 867 - speciesSurveyCode: PASIMUL - weightEnabled: true -- !SpeciesProtocol - id: ae9335aa-6908-4fbf-8cdc-00397b41fb3d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 868 - speciesSurveyCode: PASISIV - weightEnabled: true -- !SpeciesProtocol - id: 82da36c8-80d9-4eb6-8487-4086967601d4 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7329 - speciesSurveyCode: PASITAR - weightEnabled: true -- !SpeciesProtocol - id: 36c5e92f-9973-4f31-83ac-80df4a1e9fc9 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 872 - speciesSurveyCode: ACAPPEL - weightEnabled: true -- !SpeciesProtocol - id: f62d6812-d6fd-4aa4-9daa-be12a9f91b46 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7328 - speciesSurveyCode: EPHYFIG - weightEnabled: true -- !SpeciesProtocol - id: 2f2ed4d3-92f5-435e-b7ed-473091385ae1 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6807 - speciesSurveyCode: SYSTDEB - weightEnabled: true -- !SpeciesProtocol - id: 17441118-c56f-46b0-9703-8fd62329a97c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 920 - speciesSurveyCode: PALOSER - weightEnabled: true -- !SpeciesProtocol - id: 46d7fa82-4f27-4289-bdd0-96132232e4c6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 907 - speciesSurveyCode: ALPHGLA - weightEnabled: true -- !SpeciesProtocol - id: ab09c0c9-c226-4e53-ab52-ac8d81b64c83 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4675 - speciesSurveyCode: SPITLIL - weightEnabled: true -- !SpeciesProtocol - id: e9e3187d-b144-4e2c-90d8-fd29f815de5b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 911 - speciesSurveyCode: PROC - weightEnabled: true -- !SpeciesProtocol - id: 7c74f70c-e300-40c6-a58b-dc8658e1ac07 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 886 - speciesSurveyCode: CHLOCRA - weightEnabled: true -- !SpeciesProtocol - id: ff4464db-3ae3-41a6-9267-f76eb8877f1d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 878 - speciesSurveyCode: PANSMON - weightEnabled: true -- !SpeciesProtocol - id: 728d3198-8c5a-4a2f-ae5c-31bc8a8b39bd - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3195 - speciesSurveyCode: DICHBON - weightEnabled: true -- !SpeciesProtocol - id: 96f461d3-aae3-4f0d-bac2-c6fb43f8af1f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7201 - speciesSurveyCode: ATLAPRO - weightEnabled: true -- !SpeciesProtocol - id: 7e435fd8-bfc4-4382-9c2d-6ce75dfd3dfa - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 883 - speciesSurveyCode: PLEKHET - weightEnabled: true -- !SpeciesProtocol - id: 76bb8e67-b7ee-4266-8569-809bf3b33c50 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 884 - speciesSurveyCode: PLEKMAR - weightEnabled: true -- !SpeciesProtocol - id: 15b8dd42-9647-433e-88c3-93877b942ff9 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 931 - speciesSurveyCode: CRAGCRA - weightEnabled: true -- !SpeciesProtocol - id: 344c8436-0ed4-43b8-9f27-3d45cfdf9888 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 932 - speciesSurveyCode: CRAGALM - weightEnabled: true -- !SpeciesProtocol - id: af4cd33d-1f54-4499-89c1-9af0a69c6da6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 934 - speciesSurveyCode: PONPSPI - weightEnabled: true -- !SpeciesProtocol - id: fdb419b1-95a2-4453-aa4f-b41d5e0df536 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 941 - speciesSurveyCode: PHICECH - weightEnabled: true -- !SpeciesProtocol - id: aa108bd5-7648-49fb-a8f5-4fd84a947cc8 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 953 - speciesSurveyCode: POLCTYP - weightEnabled: true -- !SpeciesProtocol - id: c658e483-7508-4d2e-8461-3a62f4c4eb88 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 962 - speciesSurveyCode: SCYLARC - weightEnabled: true -- !SpeciesProtocol - id: 19b2abce-c9ac-468b-bbae-ad394219061b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 966 - speciesSurveyCode: CALRMAC - weightEnabled: true -- !SpeciesProtocol - id: 1d37567f-ba55-442e-9061-f05598b0abd9 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 971 - speciesSurveyCode: JAXENOC - weightEnabled: true -- !SpeciesProtocol - id: 8583da85-0c91-41e5-a367-d189aad8e95c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7274 - speciesSurveyCode: UFGALAT - weightEnabled: true -- !SpeciesProtocol - id: 6a37bb89-784c-4661-b651-65321408d369 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1009 - speciesSurveyCode: GALA - weightEnabled: true -- !SpeciesProtocol - id: 06d305e8-e6c0-4c8c-953e-4f5cc63913b7 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1015 - speciesSurveyCode: MUNI - weightEnabled: true -- !SpeciesProtocol - id: ae681647-6a86-4182-8700-28dad56d1c0b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1023 - speciesSurveyCode: PISILON - weightEnabled: true -- !SpeciesProtocol - id: e1421b4f-4737-479f-8a66-7bb187ba5f53 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2167 - speciesSurveyCode: UFPAGUR - weightEnabled: true -- !SpeciesProtocol - id: aedc95e5-1481-4040-8191-059e9a4319f6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 987 - speciesSurveyCode: DIOGPUG - weightEnabled: true -- !SpeciesProtocol - id: de3d9348-63be-4702-8c24-2ecf64526778 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7330 - speciesSurveyCode: PRPGPIL - weightEnabled: true -- !SpeciesProtocol - id: e526f085-b0cc-4e84-a932-b3de8f944978 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1005 - speciesSurveyCode: ANAPHYN - weightEnabled: true -- !SpeciesProtocol - id: 54277186-2882-41d0-8305-c1d1d2324d86 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1007 - speciesSurveyCode: ANAPLAE - weightEnabled: true -- !SpeciesProtocol - id: 16d6882a-52e5-4ba1-86ef-d256a1aa33e1 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 998 - speciesSurveyCode: PAGUALA - weightEnabled: true -- !SpeciesProtocol - id: 4001a11b-f999-4411-8691-436a5a23db05 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 995 - speciesSurveyCode: PAGUBER - weightEnabled: true -- !SpeciesProtocol - id: 9fe0cbb0-ded5-43b1-8d87-f4a42072b29c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7270 - speciesSurveyCode: PAGUCAR - weightEnabled: true -- !SpeciesProtocol - id: e8676fb9-b41f-423b-9e52-6a7b9d5176d7 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 997 - speciesSurveyCode: PAGUCUA - weightEnabled: true -- !SpeciesProtocol - id: 971b95c7-dea6-4202-9cbd-07b28f73c783 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 999 - speciesSurveyCode: PAGUEXC - weightEnabled: true -- !SpeciesProtocol - id: fa1468c5-e88d-4fe1-85f1-019a18935bba - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1000 - speciesSurveyCode: PAGUFOR - weightEnabled: true -- !SpeciesProtocol - id: e521df38-87bb-4d1f-b7cb-9673f641c26f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 994 - speciesSurveyCode: PAGUPRI - weightEnabled: true -- !SpeciesProtocol - id: ddb62b81-bc87-4d26-af74-a8e1b0bea1f8 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1026 - speciesSurveyCode: IOBRACY - weightEnabled: true -- !SpeciesProtocol - id: 4a5faccd-ddff-4788-85d6-7d74ab0254c3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1114 - speciesSurveyCode: HYASCOA - weightEnabled: true -- !SpeciesProtocol - id: 573ec09d-29e6-4486-8017-586dea5c71a8 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1119 - speciesSurveyCode: EURYASP - weightEnabled: true -- !SpeciesProtocol - id: cc63b687-35e3-4520-b264-b2e50df5a7f4 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1122 - speciesSurveyCode: ERGACLO - weightEnabled: true -- !SpeciesProtocol - id: 03713c08-88e1-4725-936c-1b608f57c87b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1128 - speciesSurveyCode: INACDOR - weightEnabled: true -- !SpeciesProtocol - id: f05daab5-710f-476f-abde-aba23748d34d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1126 - speciesSurveyCode: INACLEP - weightEnabled: true -- !SpeciesProtocol - id: 53242a02-cf94-43ba-8f12-c8211c518c42 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1131 - speciesSurveyCode: MACR - weightEnabled: true -- !SpeciesProtocol - id: 421cbd74-04c1-40a3-8243-ced73bfc036f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1135 - speciesSurveyCode: MACRTEN - weightEnabled: true -- !SpeciesProtocol - id: f6cc3f25-5a47-4b5a-8133-464e3cb73ed3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1038 - speciesSurveyCode: EBALTUB - weightEnabled: true -- !SpeciesProtocol - id: aaa48d2a-5290-4149-b001-42b5bd5fbe89 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4435 - speciesSurveyCode: EBALGRA - weightEnabled: true -- !SpeciesProtocol - id: 43b07f9c-929e-4369-a75e-4af2e143fd12 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1044 - speciesSurveyCode: CORSCAS - weightEnabled: true -- !SpeciesProtocol - id: cb99968c-594d-4895-8f65-1d1a4d5f4f12 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1050 - speciesSurveyCode: ATELROT - weightEnabled: true -- !SpeciesProtocol - id: 547a373a-bc00-4bc0-b937-a2b896fcc607 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1051 - speciesSurveyCode: ATELUND - weightEnabled: true -- !SpeciesProtocol - id: 5f76fac8-a7ec-4573-87cf-abb7afdb54e5 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1047 - speciesSurveyCode: THIASCU - weightEnabled: true -- !SpeciesProtocol - id: b53b9fcd-8df1-4d05-80fd-5a577bf1514a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1062 - speciesSurveyCode: PORTLAT - weightEnabled: true -- !SpeciesProtocol - id: d68a745e-a0dd-4664-b31e-729e71ef5e46 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1071 - speciesSurveyCode: LIOCARC - weightEnabled: true -- !SpeciesProtocol - id: d5e802d4-f896-4be7-a6d8-6380edceedb7 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1068 - speciesSurveyCode: LIOCPUS - weightEnabled: true -- !SpeciesProtocol - id: ec4eaa54-4c27-4e01-a36e-c553ed0aa24d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1069 - speciesSurveyCode: LIOCDEP - weightEnabled: true -- !SpeciesProtocol - id: 17bebb52-4648-426d-9d59-03a1b00f44fd - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1070 - speciesSurveyCode: LIOCHOL - weightEnabled: true -- !SpeciesProtocol - id: bfca35f3-1aa9-4b78-ac99-ced9ff20ba31 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1074 - speciesSurveyCode: LIOCMAR - weightEnabled: true -- !SpeciesProtocol - id: d1d5ed71-b5b1-4350-96ef-db484262c8f3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1075 - speciesSurveyCode: LIOCVER - weightEnabled: true -- !SpeciesProtocol - id: 5ec5ff84-0dcf-4cb6-acbe-497390ecdeee - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1077 - speciesSurveyCode: POLBHEN - weightEnabled: true -- !SpeciesProtocol - id: 815aca9b-78e4-4e15-9876-39e5fa8226da - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1066 - speciesSurveyCode: MCPITUB - weightEnabled: true -- !SpeciesProtocol - id: 5c542dae-e537-4f8f-9b14-2e27b154e8a8 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1076 - speciesSurveyCode: NECOPUB - weightEnabled: true -- !SpeciesProtocol - id: dbb31a95-b56d-4a17-96b4-b2d0efda6fcc - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4427 - speciesSurveyCode: BATYLON - weightEnabled: true -- !SpeciesProtocol - id: a3a02471-f76d-4326-bc0d-eab0cdb53f56 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1064 - speciesSurveyCode: BATYMAR - weightEnabled: true -- !SpeciesProtocol - id: bdd37eeb-558a-4fd4-9bf4-c3c3c2549db1 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7199 - speciesSurveyCode: DSTOMAL - weightEnabled: true -- !SpeciesProtocol - id: 2dd47d97-214f-4fd1-b3c6-956c5d1d9127 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1094 - speciesSurveyCode: MONDCOU - weightEnabled: true -- !SpeciesProtocol - id: 85a3a619-f8a6-430e-992c-13cb0be581bc - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2208 - speciesSurveyCode: XANTPIL - weightEnabled: true -- !SpeciesProtocol - id: 94b8fa8a-4b39-4ac8-9231-a4a7fff7ff07 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1090 - speciesSurveyCode: PILUHIR - weightEnabled: true -- !SpeciesProtocol - id: 77e69b6d-9e34-4796-bb08-475e3124e1ad - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1103 - speciesSurveyCode: GONERHO - weightEnabled: true -- !SpeciesProtocol - id: d27ca8fa-eb98-4494-9a14-f6898f16b708 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1143 - speciesSurveyCode: CLCRINO - weightEnabled: true -- !SpeciesProtocol - id: ba11e473-9f08-4e86-b65d-ebc1ff526525 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4211 - speciesSurveyCode: LPTMCEL - weightEnabled: true -- !SpeciesProtocol - id: 99fdb147-b9c0-4efa-b4e8-b119a3a9c240 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7390 - speciesSurveyCode: ANTDPET - weightEnabled: true -- !SpeciesProtocol - id: 1f3ad7e6-95ff-4c47-8fe7-1488da2be451 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1144 - speciesSurveyCode: CLASTER - weightEnabled: true -- !SpeciesProtocol - id: e6a95b7d-bfe7-4eab-b66b-f8d1c043609a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3009 - speciesSurveyCode: LUIDCIL - weightEnabled: true -- !SpeciesProtocol - id: 40c89afb-8fa7-4aca-8685-219d9a2253ac - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4414 - speciesSurveyCode: LUIDSAR - weightEnabled: true -- !SpeciesProtocol - id: 04fa7b80-4f4a-43f3-a39f-874b2952afac - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1150 - speciesSurveyCode: ASTPIRR - weightEnabled: true -- !SpeciesProtocol - id: 1ef7115b-92c6-424c-99bf-691cf11d077e - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6809 - speciesSurveyCode: PLUTBIF - weightEnabled: true -- !SpeciesProtocol - id: d3030bb0-d6ec-4c98-875b-6b8d27eb8628 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 12054 - speciesSurveyCode: FMBENTO - weightEnabled: true -- !SpeciesProtocol - id: 968b9f78-b931-4790-9c8f-7995b2460811 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 12046 - speciesSurveyCode: ODONMED - weightEnabled: true -- !SpeciesProtocol - id: 1eebc88a-aa0d-40d6-a547-f22cd85622b0 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1145 - speciesSurveyCode: ANSEPLA - weightEnabled: true -- !SpeciesProtocol - id: 651ecf57-6205-473b-9ac1-3b3375379f94 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3026 - speciesSurveyCode: PORAPUL - weightEnabled: true -- !SpeciesProtocol - id: 65caf6a2-6b56-4798-bf0f-52354b1adbdc - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7193 - speciesSurveyCode: NYMFARE - weightEnabled: true -- !SpeciesProtocol - id: eb3250f0-3ad4-4286-bcbc-ef640c4ffac6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 12058 - speciesSurveyCode: PDASGRA - weightEnabled: true -- !SpeciesProtocol - id: 601cd9a5-7384-4a13-96f7-34a64f6899d2 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3685 - speciesSurveyCode: PELSPLA - weightEnabled: true -- !SpeciesProtocol - id: 8ee206e4-cea1-43a6-b7a7-05cc85724bf3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2404 - speciesSurveyCode: CROSPAP - weightEnabled: true -- !SpeciesProtocol - id: eed51b46-d05a-4442-997b-a204d87a121a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7287 - speciesSurveyCode: PTASPUL - weightEnabled: true -- !SpeciesProtocol - id: 6adc2530-d990-41c1-8c9d-ccef3eee7dae - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3577 - speciesSurveyCode: HENR - weightEnabled: true -- !SpeciesProtocol - id: fefffa30-cf34-45eb-9bab-b4d226fc3947 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1148 - speciesSurveyCode: ASTIRUB - weightEnabled: true -- !SpeciesProtocol - id: 7a01cf28-560a-4068-ad77-f55f9e6b0ca2 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1146 - speciesSurveyCode: MARHGLA - weightEnabled: true -- !SpeciesProtocol - id: 7cf85e22-8fc7-475f-a89c-6dd02b635d92 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4660 - speciesSurveyCode: STIHROS - weightEnabled: true -- !SpeciesProtocol - id: 1403e0a1-271d-4cdc-a0c5-77165f713ebf - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 12043 - speciesSurveyCode: ZOROFUL - weightEnabled: true -- !SpeciesProtocol - id: d9590c0d-47bc-412f-8c44-0c2524962efd - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7197 - speciesSurveyCode: HYMNCOR - weightEnabled: true -- !SpeciesProtocol - id: 7f036e05-208a-4092-a196-6fe11d5ee159 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1151 - speciesSurveyCode: CLOPHIU - weightEnabled: true -- !SpeciesProtocol - id: 2e7f6e33-8bb0-4659-8b2d-bfc85eb8f21f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6242 - speciesSurveyCode: ASTYLOV - weightEnabled: true -- !SpeciesProtocol - id: 94c1665f-905a-4c1c-82dc-88a0d2239c57 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1158 - speciesSurveyCode: OPHOFRA - weightEnabled: true -- !SpeciesProtocol - id: d14416d4-f76f-45be-811d-18cc79d68b8f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3550 - speciesSurveyCode: OPHOLUE - weightEnabled: true -- !SpeciesProtocol - id: 7f1f12bf-0fe6-4fbb-aad2-ecb9f3f6823f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4398 - speciesSurveyCode: OPHANIG - weightEnabled: true -- !SpeciesProtocol - id: bdc0c80a-6f24-4c7d-85d4-faf913509171 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7675 - speciesSurveyCode: OFIABRE - weightEnabled: true -- !SpeciesProtocol - id: 57618b4e-22f7-4d80-80d6-027f85cb8117 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1161 - speciesSurveyCode: ACROBRA - weightEnabled: true -- !SpeciesProtocol - id: 53d7e1e3-6ba5-4643-8f55-819360825c3b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4743 - speciesSurveyCode: OPOCAFF - weightEnabled: true -- !SpeciesProtocol - id: 55637b53-4303-4853-9a9e-8c0f36fb6b74 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1156 - speciesSurveyCode: OPHUALB - weightEnabled: true -- !SpeciesProtocol - id: 8a2ddb13-583a-41ea-8f7e-854e10d9db57 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1155 - speciesSurveyCode: OPHUOPH - weightEnabled: true -- !SpeciesProtocol - id: e9d54ce3-b838-4e98-a370-69e0ba16f1b5 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 10421 - speciesSurveyCode: CLECHIN - weightEnabled: true -- !SpeciesProtocol - id: 604524ed-d469-4b92-a705-f3711d235194 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6812 - speciesSurveyCode: CIDACID - weightEnabled: true -- !SpeciesProtocol - id: 74b89b6b-5478-47f9-9edb-5572c7b4368c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7334 - speciesSurveyCode: ORECHTU - weightEnabled: true -- !SpeciesProtocol - id: 594b7b8a-7f16-4c9f-b43d-41b78c90aff7 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1173 - speciesSurveyCode: SPHAGRA - weightEnabled: true -- !SpeciesProtocol - id: 10571280-89f5-43fa-bab1-8334eb2daa87 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4235 - speciesSurveyCode: GRACACU - weightEnabled: true -- !SpeciesProtocol - id: 2a3dc83e-47c5-48d4-a99e-28547101ded6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1168 - speciesSurveyCode: ECHNESC - weightEnabled: true -- !SpeciesProtocol - id: c2015d42-d84e-4d8a-9cf6-b195a55b8df6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1169 - speciesSurveyCode: ECHNMEL - weightEnabled: true -- !SpeciesProtocol - id: 73ce4b58-2401-4040-9cc0-10111d58ab36 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6130 - speciesSurveyCode: ECHNELE - weightEnabled: true -- !SpeciesProtocol - id: cccf58c5-50df-4f4b-9138-64236e6b5bc5 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1172 - speciesSurveyCode: PSAMMIL - weightEnabled: true -- !SpeciesProtocol - id: da6ea910-d521-4cd5-814c-8a6058492055 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1164 - speciesSurveyCode: ECHCCOR - weightEnabled: true -- !SpeciesProtocol - id: a751b54e-cec7-492a-b75d-4300968459a6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7283 - speciesSurveyCode: ECHCPEN - weightEnabled: true -- !SpeciesProtocol - id: a1ab8f21-36b2-42eb-8c03-695fbc93a08f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2408 - speciesSurveyCode: SPATPUR - weightEnabled: true -- !SpeciesProtocol - id: e7356555-25cf-42c6-827f-7f1536120a97 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4388 - speciesSurveyCode: BRISLYR - weightEnabled: true -- !SpeciesProtocol - id: 9ec31fda-592b-4b5b-ae3b-6d287e62e2f6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1174 - speciesSurveyCode: CLHOLOT - weightEnabled: true -- !SpeciesProtocol - id: a4861440-bd23-4b6e-96f1-6f03a73302e6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 12032 - speciesSurveyCode: LAEGVIO - weightEnabled: true -- !SpeciesProtocol - id: 5f83fb45-4b3f-445b-a467-b63858814435 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 12057 - speciesSurveyCode: MESAINT - weightEnabled: true -- !SpeciesProtocol - id: 4a45808f-83b4-497c-a652-68a78d688def - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 11323 - speciesSurveyCode: HLTPFOR - weightEnabled: true -- !SpeciesProtocol - id: 657eba58-62a1-47ea-ac95-9a0d24152c85 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2203 - speciesSurveyCode: LPTOELO - weightEnabled: true -- !SpeciesProtocol - id: 5bdcc732-93d7-4160-8491-41695488460d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7673 - speciesSurveyCode: PSOLPHA - weightEnabled: true -- !SpeciesProtocol - id: ce2c9b51-f893-4f9c-a7d3-ed04e1fc9290 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1177 - speciesSurveyCode: PRSTREG - weightEnabled: true -- !SpeciesProtocol - id: 46158863-6fce-4a07-af56-b7c822a400cd - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7273 - speciesSurveyCode: PRSTTRE - weightEnabled: true -- !SpeciesProtocol - id: 4f935681-5a00-46b8-a6cc-ab451d6b8f5f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3023 - speciesSurveyCode: LEPSINH - weightEnabled: true -- !SpeciesProtocol - id: b13bdacf-ffdb-4e5f-8da2-189660675c3f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1182 - speciesSurveyCode: CLASCID - weightEnabled: true -- !SpeciesProtocol - id: 935c3ee3-ac79-449c-ae62-ce4b4243d79d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3943 - speciesSurveyCode: ASCD - weightEnabled: true -comment: Protocole pour les tests 2013 avec Jean Jacques Rivoalen -gearUseFeaturePmfmId: -- 131 -- 828 -- 884 -- 965 -lengthClassesPmfmId: -- 306 -- 622 -- 307 -- 302 -- 299 -- 1394 -- 1417 -- 1425 -- 1426 -- 1427 -- 283 -- 284 -- 285 -- 294 -- 295 -- 300 -- 301 -- 304 -- 318 -- 319 -- 322 -- 323 -- 661 -- 662 -species: -- !SpeciesProtocol - id: 877bacab-745a-4547-a564-6314ab5e023b - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 495 - speciesSurveyCode: ABRAVER - weightEnabled: true -- !SpeciesProtocol - id: ddffa4c9-cbb5-447f-a829-e2ac0cfea0f5 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1732 - speciesSurveyCode: ACANPAL - weightEnabled: true -- !SpeciesProtocol - id: 0de3f5c9-0ca9-4a7c-84aa-323d9eaa7f7f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 872 - speciesSurveyCode: ACANPEL - weightEnabled: true -- !SpeciesProtocol - id: 9febe2fb-dfe4-4fb5-92e1-fe7b1fed10ae - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4284 - speciesSurveyCode: ACANPUR - weightEnabled: true -- !SpeciesProtocol - id: d8d629b7-014d-4360-b4a3-eeafdc46c2a2 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1938 - speciesSurveyCode: AGONCAT - weightEnabled: true -- !SpeciesProtocol - id: 8a65a432-6238-4db2-b835-15fcfb3c2040 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1345 - speciesSurveyCode: ALEPBAI - weightEnabled: true -- !SpeciesProtocol - id: 5f64bd55-561d-4ba3-880a-2b155e32c844 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1344 - speciesSurveyCode: ALEPROS - weightEnabled: true -- !SpeciesProtocol - id: ac835e02-ca0b-4874-adb4-46717fa014ce - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 491 - speciesSurveyCode: ALLOTEZ - weightEnabled: true -- !SpeciesProtocol - id: ad3570c6-c0f0-42c1-b4ea-99b808c8287d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1358 - speciesSurveyCode: ALOSALO - weightEnabled: true -- !SpeciesProtocol - id: 343338d6-cea6-4c88-a774-e7af0d2c302c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1359 - speciesSurveyCode: ALOSFAL - weightEnabled: true -- !SpeciesProtocol - id: de220496-40f9-426d-acd3-86b21c193240 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1750 - speciesSurveyCode: AMMOMAR - weightEnabled: true -- !SpeciesProtocol - id: 477de625-4ff9-4d92-8349-99b84ad622fe - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1749 - speciesSurveyCode: AMMOTOB - weightEnabled: true -- !SpeciesProtocol - id: 99ecc146-18f4-4706-af13-72e03022db65 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1830 - speciesSurveyCode: ANARLUP - weightEnabled: true -- !SpeciesProtocol - id: 3c453e69-1145-4420-83da-bd38a2306dcd - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 622 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1452 - speciesSurveyCode: ANGUANG - weightEnabled: true -- !SpeciesProtocol - id: a8de7599-b4e7-4356-9a49-aa2c7ed171bc - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2590 - speciesSurveyCode: ANOPCOR - weightEnabled: true -- !SpeciesProtocol - id: 736c3e30-c161-481e-9280-348e9304d318 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1766 - speciesSurveyCode: APHACAR - weightEnabled: true -- !SpeciesProtocol - id: 45f5f2ef-d5fb-469e-8bee-42d84cf2356a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1795 - speciesSurveyCode: APHIMIN - weightEnabled: true -- !SpeciesProtocol - id: 6481d6cd-e1a0-4116-956b-3e1e1f2398ac - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1395 - speciesSurveyCode: ARGESIL - weightEnabled: true -- !SpeciesProtocol - id: 75de6e2d-9ad6-48b3-9033-31fd4e152c6e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1394 - speciesSurveyCode: ARGESPH - weightEnabled: true -- !SpeciesProtocol - id: 993023a8-9c33-48f2-b528-a69839553f0b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1377 - speciesSurveyCode: ARGYACU - weightEnabled: true -- !SpeciesProtocol - id: 6063df73-978e-4e99-ac80-10a34c6aa9b8 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1375 - speciesSurveyCode: ARGYHEM - weightEnabled: true -- !SpeciesProtocol - id: cd81c7b3-d0a7-4353-a94b-8e60df6b012d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1376 - speciesSurveyCode: ARGYOLF - weightEnabled: true -- !SpeciesProtocol - id: 4787bde0-f556-4d2d-90ee-86f81585f70f - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1680 - speciesSurveyCode: ARGYOPZ - weightEnabled: true -- !SpeciesProtocol - id: b138316d-9d0d-4caf-93cc-d7ebfd88a33d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 622 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1681 - speciesSurveyCode: ARGYREG - weightEnabled: true -- !SpeciesProtocol - id: 78117090-32a9-4074-96eb-157bdf124873 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1972 - speciesSurveyCode: ARNOIMP - weightEnabled: true -- !SpeciesProtocol - id: 9a22c66f-8227-438c-919a-425f70580112 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1971 - speciesSurveyCode: ARNOLAT - weightEnabled: true -- !SpeciesProtocol - id: 40c84a30-39cb-46c0-bcd5-246fe5357c76 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1974 - speciesSurveyCode: ARNOTHO - weightEnabled: true -- !SpeciesProtocol - id: 23fc5383-dedb-46dd-9e5d-71bd174300c4 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1912 - speciesSurveyCode: ASPICUC - weightEnabled: true -- !SpeciesProtocol - id: faecc70a-20a9-4cee-a928-24eaa45b3be0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 622 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1913 - speciesSurveyCode: ASPIOBS - weightEnabled: true -- !SpeciesProtocol - id: c2e937e3-0d29-4bc9-8df3-a328e0ad8253 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1890 - speciesSurveyCode: ATHEBOY - weightEnabled: true -- !SpeciesProtocol - id: 14db658f-1f4a-43b5-809b-a8cb41a336cc - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1891 - speciesSurveyCode: ATHEPRE - weightEnabled: true -- !SpeciesProtocol - id: 61173ce6-b689-458c-8cc5-15cd9595b161 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2025 - speciesSurveyCode: BALICAP - weightEnabled: true -- !SpeciesProtocol - id: bc447919-f407-4c27-bf3b-9f608eb7d8ab - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2024 - speciesSurveyCode: BALISTZ - weightEnabled: true -- !SpeciesProtocol - id: 8a8f875d-3b54-42a6-82bd-5712ed85e041 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 805 - speciesSurveyCode: BATHDUB - weightEnabled: true -- !SpeciesProtocol - id: 84a06b71-b9ee-4ec7-8d31-9814e0395ebf - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2597 - speciesSurveyCode: BATHEUR - weightEnabled: true -- !SpeciesProtocol - id: 783730cb-25e8-4fee-9625-cb028cee0520 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 622 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2002 - speciesSurveyCode: BATHPRO - weightEnabled: true -- !SpeciesProtocol - id: 6a2a87c2-deaa-4936-8f32-8b188f9ea608 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 523 - speciesSurveyCode: BATHSPO - weightEnabled: true -- !SpeciesProtocol - id: b0c45ed6-6535-426f-a577-3a499909a419 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1488 - speciesSurveyCode: BELOBEO - weightEnabled: true -- !SpeciesProtocol - id: be8b2226-96e1-432c-83c6-a3254977af06 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1416 - speciesSurveyCode: BENTGLA - weightEnabled: true -- !SpeciesProtocol - id: ee6355b9-292f-4fdd-9084-35377975a6ae - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1609 - speciesSurveyCode: BERYDEC - weightEnabled: true -- !SpeciesProtocol - id: 5fd3ab62-efca-42d9-861f-2b8c615f9460 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1610 - speciesSurveyCode: BERYSPL - weightEnabled: true -- !SpeciesProtocol - id: fa209f55-2827-458d-9058-02e743d6384f - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1818 - speciesSurveyCode: BLENOCE - weightEnabled: true -- !SpeciesProtocol - id: 97f9116d-72dd-437e-9141-c39b1c10b219 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1698 - speciesSurveyCode: BOOPBOO - weightEnabled: true -- !SpeciesProtocol - id: 4c05980c-cde3-4ca4-9086-6e27c8594850 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1672 - speciesSurveyCode: BRAMBRA - weightEnabled: true -- !SpeciesProtocol - id: bb5f6b4e-e8c7-4470-b2eb-f2797f6b100d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 300 - speciesSurveyCode: BUCCUND - weightEnabled: true -- !SpeciesProtocol - id: b38890ae-1125-4615-97c8-3a846a148f8b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3702 - speciesSurveyCode: BUENJEF - weightEnabled: true -- !SpeciesProtocol - id: c13af633-6c77-46ff-97db-601a99364f86 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2004 - speciesSurveyCode: BUGLLUT - weightEnabled: true -- !SpeciesProtocol - id: 332a9795-6188-48dd-9352-b45d5eb61595 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1811 - speciesSurveyCode: CALLLYR - weightEnabled: true -- !SpeciesProtocol - id: 6ea251ce-4185-4d22-bf99-d15ad10e013b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1812 - speciesSurveyCode: CALLMAC - weightEnabled: true -- !SpeciesProtocol - id: e962d490-1832-43a2-89b7-73c308f56a0e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1813 - speciesSurveyCode: CALLRET - weightEnabled: true -- !SpeciesProtocol - id: 90285afa-4fb3-432a-8bc1-78d5916e1235 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1055 - speciesSurveyCode: CANCBEL - weightEnabled: true -- !SpeciesProtocol - id: dac3d161-71d0-498c-8b88-cae2bc80a57c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1054 - speciesSurveyCode: CANCPAG - weightEnabled: true -- !SpeciesProtocol - id: 06372f2f-5725-4904-8535-887801330260 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - speciesReferenceTaxonId: 1624 - speciesSurveyCode: CAPRAPE - weightEnabled: true -- !SpeciesProtocol - id: 885d7dfb-33cd-4cc4-8026-ab2f6463d9d5 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1272 - speciesSurveyCode: CENTCRE - weightEnabled: true -- !SpeciesProtocol - id: 05cc8f95-179f-4635-8d9d-ef0ccb341add - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1734 - speciesSurveyCode: CENTEXO - weightEnabled: true -- !SpeciesProtocol - id: 88e07ffd-79f8-4f3e-816a-87daed2b5823 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2207 - speciesSurveyCode: CENTFAB - weightEnabled: true -- !SpeciesProtocol - id: 097dec81-f586-4dc6-9fab-02ce5828a160 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 632 - speciesSurveyCode: CENTNIR - weightEnabled: true -- !SpeciesProtocol - id: 65c5cc3d-2739-4c2a-9b80-a9a7f91d47bc - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1278 - speciesSurveyCode: CENTSQU - weightEnabled: true -- !SpeciesProtocol - id: 2fe7c9cf-b757-4256-8b30-c295524f4c06 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1654 - speciesSurveyCode: CEPORUB - weightEnabled: true -- !SpeciesProtocol - id: 116f3b72-7fcd-46d7-a07b-5191d1a71199 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1417 - speciesSurveyCode: CERAMAD - weightEnabled: true -- !SpeciesProtocol - id: d2660cca-bbd1-4b04-8eb1-7260a41c33d1 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1383 - speciesSurveyCode: CHAUSLO - weightEnabled: true -- !SpeciesProtocol - id: 8888d0e0-b134-4263-b393-764753a3c449 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1879 - speciesSurveyCode: CHELLAB - weightEnabled: true -- !SpeciesProtocol - id: 036db3c9-0495-443e-85a8-303281f8ee2f - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1335 - speciesSurveyCode: CHIMMON - weightEnabled: true -- !SpeciesProtocol - id: 1e6cea11-f59c-4418-80a6-fabe7b03be8e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1834 - speciesSurveyCode: CHIRASC - weightEnabled: true -- !SpeciesProtocol - id: 3e01d68c-4639-4fd2-93fe-d68a6d6ac366 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 365 - speciesSurveyCode: CHLAOPE - weightEnabled: true -- !SpeciesProtocol - id: 9843cf6f-231d-4485-8653-f789410244bb - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 367 - speciesSurveyCode: CHLAVAR - weightEnabled: true -- !SpeciesProtocol - id: fb3194c0-4db9-47a7-9359-a4c4e5555964 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1410 - speciesSurveyCode: CHLOAGA - weightEnabled: true -- !SpeciesProtocol - id: b0435a4d-328c-4c10-a277-0b4b2e988fee - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1562 - speciesSurveyCode: CILIATZ - weightEnabled: true -- !SpeciesProtocol - id: 1058c26c-8c56-48f8-b8c7-f4e680f3b7f1 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1563 - speciesSurveyCode: CILIMUS - weightEnabled: true -- !SpeciesProtocol - id: 134e0e89-6605-4722-8dc5-bc84b4680bab - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 307 - mandatorySampleCategoryId: - - 198 - speciesReferenceTaxonId: 1349 - speciesSurveyCode: CLUPHAR - weightEnabled: true -- !SpeciesProtocol - id: 461450d8-17ad-432e-859b-310b96cccfba - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1532 - speciesSurveyCode: COELCOE - weightEnabled: true -- !SpeciesProtocol - id: ad539e1a-6c05-47cf-8405-3e127770c5c6 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2604 - speciesSurveyCode: COELLAB - weightEnabled: true -- !SpeciesProtocol - id: 0dcc1c5f-b80e-47b3-8271-84815c96869e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1467 - speciesSurveyCode: CONGCON - weightEnabled: true -- !SpeciesProtocol - id: c1b4c34d-ad53-44fd-9a76-153388e677ef - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1535 - speciesSurveyCode: CORYRUP - weightEnabled: true -- !SpeciesProtocol - id: 5fe60004-eec1-4561-9389-a0a4a2b4d04b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 931 - speciesSurveyCode: CRANCRA - weightEnabled: true -- !SpeciesProtocol - id: 7c4e2e81-8ab3-41e6-8792-0194170607fd - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 930 - speciesSurveyCode: CRANGOZ - weightEnabled: true -- !SpeciesProtocol - id: 7091cdf2-1134-46d3-90ab-70b0652ad512 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 372 - speciesSurveyCode: CRASGIG - weightEnabled: true -- !SpeciesProtocol - id: 81b2b211-045b-4fd4-b042-61b95d9c21dc - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 622 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1797 - speciesSurveyCode: CRYSLIN - weightEnabled: true -- !SpeciesProtocol - id: 1fb83e18-f6bb-4d69-a52d-6418c9d379fc - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1736 - speciesSurveyCode: CTENRUP - weightEnabled: true -- !SpeciesProtocol - id: 1912e529-fb06-44af-ae3b-9b1f2bdf1ec0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4258 - speciesSurveyCode: CYCLBRA - weightEnabled: true -- !SpeciesProtocol - id: 8876b70b-b0ed-4f85-beee-9dca75a29c5e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6819 - speciesSurveyCode: CYCLMIC - weightEnabled: true -- !SpeciesProtocol - id: 086d946b-cf90-47e4-9b9d-ab79b49fd911 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 670 - speciesSurveyCode: CYCLOTZ - weightEnabled: true -- !SpeciesProtocol - id: 08dc98ed-bd76-44d4-b559-be04a52e11fb - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1621 - speciesSurveyCode: CYTTROS - weightEnabled: true -- !SpeciesProtocol - id: 863d5dec-9c8f-476c-9102-b745efa20ef5 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1282 - speciesSurveyCode: DALALIC - weightEnabled: true -- !SpeciesProtocol - id: 307d23ac-05bc-4f72-8dae-5838aafc6ce4 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1322 - speciesSurveyCode: DASYPAS - weightEnabled: true -- !SpeciesProtocol - id: 1155f0ca-86dc-4958-b9e3-ef03e667116e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1273 - speciesSurveyCode: DEANCAL - weightEnabled: true -- !SpeciesProtocol - id: 8e59bcf0-90b0-42ca-8978-f86419cc82c4 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 7558 - speciesSurveyCode: DEANPRO - weightEnabled: true -- !SpeciesProtocol - id: 8bfc32f5-cf8f-438f-b14a-f62953a29033 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1421 - speciesSurveyCode: DIAPHUZ - weightEnabled: true -- !SpeciesProtocol - id: c37c6234-1a17-49af-b6ee-09ba96c82f5b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1423 - speciesSurveyCode: DIAPMET - weightEnabled: true -- !SpeciesProtocol - id: 8a1779d6-6c43-40c2-94f9-94ea84108a65 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1644 - speciesSurveyCode: DICELAB - weightEnabled: true -- !SpeciesProtocol - id: d8e043c4-98d3-41ce-b762-ad68995e9b0c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1645 - speciesSurveyCode: DICEPUN - weightEnabled: true -- !SpeciesProtocol - id: a98b7423-7a92-40cc-8f97-c90e3602c378 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3195 - speciesSurveyCode: DICHBON - weightEnabled: true -- !SpeciesProtocol - id: f8625468-8bdf-4dde-9f88-dffa8a0ca06e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2006 - speciesSurveyCode: DICOCUN - weightEnabled: true -- !SpeciesProtocol - id: fe63bed6-7f7c-4eb9-afc3-b388668e62bd - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1701 - speciesSurveyCode: DIPLCER - weightEnabled: true -- !SpeciesProtocol - id: a0deaadb-c34d-4742-8b0c-48f162441dce - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2041 - speciesSurveyCode: DIPLECZ - weightEnabled: true -- !SpeciesProtocol - id: 362c08ee-9387-4647-b705-02910c154de2 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1703 - speciesSurveyCode: DIPLSAR - weightEnabled: true -- !SpeciesProtocol - id: 5a5ab30b-d0ca-46e8-8cc7-63e4983c9ee7 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1704 - speciesSurveyCode: DIPLVUL - weightEnabled: true -- !SpeciesProtocol - id: cc28fb0f-dc0f-4cd0-97fe-60bd81ef68fd - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1863 - speciesSurveyCode: ECHIDRU - weightEnabled: true -- !SpeciesProtocol - id: 29fc7b1d-e6fc-4b55-812c-454832508fd2 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1762 - speciesSurveyCode: ECHIVIP - weightEnabled: true -- !SpeciesProtocol - id: 602ade13-1863-4aa9-a4a9-6e84a9b73438 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 307 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 522 - speciesSurveyCode: ELEDCIR - weightEnabled: true -- !SpeciesProtocol - id: eab2add1-2d7a-4327-ba36-f3c2f29634d0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1577 - speciesSurveyCode: ENCHCIM - weightEnabled: true -- !SpeciesProtocol - id: e4577b1e-18d1-459c-acff-04aedf4e917d - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 307 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1362 - speciesSurveyCode: ENGRENC - weightEnabled: true -- !SpeciesProtocol - id: 85f521b3-7779-4633-9e74-6ddcfffe864e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1510 - speciesSurveyCode: ENTEAEQ - weightEnabled: true -- !SpeciesProtocol - id: 4d3d9383-c31f-445b-a719-3429575e7a14 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6816 - speciesSurveyCode: EPHYHOS - weightEnabled: true -- !SpeciesProtocol - id: 71d3b9b5-0c5b-406e-8ef4-44d736e8eaa9 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1651 - speciesSurveyCode: EPIGTEL - weightEnabled: true -- !SpeciesProtocol - id: 0da78cbe-4880-44eb-8386-434c5b955d2d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 2608 - speciesSurveyCode: ETMOPRI - weightEnabled: true -- !SpeciesProtocol - id: f4206fda-1328-4df1-b922-4ce14f7ea31e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1275 - speciesSurveyCode: ETMOSPI - weightEnabled: true -- !SpeciesProtocol - id: 056a7ad4-934c-4d69-b068-1a2dd64012cb - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2786 - speciesSurveyCode: EUPHAUX - weightEnabled: true -- !SpeciesProtocol - id: 3f3583fb-15b7-49d6-b8b2-45dcf7cb1b41 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1118 - speciesSurveyCode: EURYPEL - weightEnabled: true -- !SpeciesProtocol - id: 4076fe7e-01fe-4164-820a-47b50dfa8e02 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1920 - speciesSurveyCode: EUTRGUR - weightEnabled: true -- !SpeciesProtocol - id: 0ef8f984-d0dd-47bd-b1ca-7a68594f2d3c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 7693 - speciesSurveyCode: GADIARG - weightEnabled: true -- !SpeciesProtocol - id: 93a92d1e-9214-452a-904b-0404427ea69a - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1543 - speciesSurveyCode: GADUMOR - weightEnabled: true -- !SpeciesProtocol - id: d8238f71-163b-4770-83d2-a1fad1d7d02b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1547 - speciesSurveyCode: GAIDBIS - weightEnabled: true -- !SpeciesProtocol - id: a1274e4d-ccb4-40f4-b4b9-510864ee9e27 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1581 - speciesSurveyCode: GAIDMAC - weightEnabled: true -- !SpeciesProtocol - id: db0aee40-66ed-4194-b0d2-a3b319f2c2cb - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1579 - speciesSurveyCode: GAIDMED - weightEnabled: true -- !SpeciesProtocol - id: 58f0d777-bb63-4484-80c3-5931b063af8a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1578 - speciesSurveyCode: GAIDROZ - weightEnabled: true -- !SpeciesProtocol - id: c83219f4-2a0c-4d6d-88bc-f1c07eb77707 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1580 - speciesSurveyCode: GAIDVUL - weightEnabled: true -- !SpeciesProtocol - id: 0dabac56-f821-4fe9-8408-f24b4d141949 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1254 - speciesSurveyCode: GALEGAL - weightEnabled: true -- !SpeciesProtocol - id: 61287c6d-0705-447c-8a7a-a2c8fa18135b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1245 - speciesSurveyCode: GALEMEL - weightEnabled: true -- !SpeciesProtocol - id: c71a0430-c437-4557-a8cb-4e38a2b61fea - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1085 - speciesSurveyCode: GERYONZ - weightEnabled: true -- !SpeciesProtocol - id: 619431a1-3b3c-4aba-9b2a-4d86b9cd9bf3 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1084 - speciesSurveyCode: GERYQUI - weightEnabled: true -- !SpeciesProtocol - id: ec1c53c4-2698-4e1b-a147-d5691445ede1 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1087 - speciesSurveyCode: GERYTRI - weightEnabled: true -- !SpeciesProtocol - id: 9a8f1027-3678-4f99-ab35-84cd51378924 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1980 - speciesSurveyCode: GLYPCYN - weightEnabled: true -- !SpeciesProtocol - id: 00fbec98-5635-4e6a-9e5d-ddc59fc903ec - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 795 - speciesSurveyCode: GNATZOE - weightEnabled: true -- !SpeciesProtocol - id: 0efe8cbd-e369-4f00-a155-243ee6f383d4 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1782 - speciesSurveyCode: GOBIIDX - weightEnabled: true -- !SpeciesProtocol - id: fa4f8b45-1896-4a04-a58c-bbc05076ae17 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1785 - speciesSurveyCode: GOBINIG - weightEnabled: true -- !SpeciesProtocol - id: e8febb36-573b-416d-93b8-3e6e084f6115 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1786 - speciesSurveyCode: GOBIPAG - weightEnabled: true -- !SpeciesProtocol - id: f006875b-d586-4cd0-a842-aa5e8f64bbf3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2614 - speciesSurveyCode: GONOBAT - weightEnabled: true -- !SpeciesProtocol - id: d044569e-bbb5-4fd6-a721-ab0973156cbe - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6822 - speciesSurveyCode: GONOELO - weightEnabled: true -- !SpeciesProtocol - id: 50658478-3bed-4f6b-a4c2-d1651d0a19e6 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1753 - speciesSurveyCode: GYMNSEM - weightEnabled: true -- !SpeciesProtocol - id: 76a383aa-5855-483d-9282-34edc2950f6e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 622 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1588 - speciesSurveyCode: HALAJOH - weightEnabled: true -- !SpeciesProtocol - id: a526c110-fc7e-4395-8783-f7c1321818d5 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1905 - speciesSurveyCode: HELIDAC - weightEnabled: true -- !SpeciesProtocol - id: 4d73ad60-f1b6-4bc5-80c8-8d790076196f - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1222 - speciesSurveyCode: HEPTPER - weightEnabled: true -- !SpeciesProtocol - id: 59e24022-d8f0-404b-89bc-e33365dbc0c1 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1220 - speciesSurveyCode: HEXAGRI - weightEnabled: true -- !SpeciesProtocol - id: 993e18fd-5abe-4576-ba9e-3ce8746e6c1c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1512 - speciesSurveyCode: HIPPHIC - weightEnabled: true -- !SpeciesProtocol - id: 3858e1ce-f0b1-490a-94b8-97924e6899ad - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1511 - speciesSurveyCode: HIPPOCZ - weightEnabled: true -- !SpeciesProtocol - id: 6d292f43-d0ce-4341-9734-85dbf244cf79 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1982 - speciesSurveyCode: HIPPPLA - weightEnabled: true -- !SpeciesProtocol - id: 255a10b4-12fd-41e4-9898-4ff553a60774 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1513 - speciesSurveyCode: HIPPRAM - weightEnabled: true -- !SpeciesProtocol - id: b88f2f38-524f-4084-aedd-c80d81334f5d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 501 - speciesSurveyCode: HISTITZ - weightEnabled: true -- !SpeciesProtocol - id: 13ba6a28-d13b-4f96-a333-cc6873763283 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 503 - speciesSurveyCode: HISTREV - weightEnabled: true -- !SpeciesProtocol - id: ec67bdc8-3fc1-450b-b3eb-106803246507 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6823 - speciesSurveyCode: HOLTMAC - weightEnabled: true -- !SpeciesProtocol - id: dcf2eeaa-cf4e-447b-87a3-e768c3e5d4fa - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 951 - speciesSurveyCode: HOMAGAM - weightEnabled: true -- !SpeciesProtocol - id: 5ee0c1f9-73a8-4281-be97-bd0d99baa2e8 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1614 - speciesSurveyCode: HOPLATL - weightEnabled: true -- !SpeciesProtocol - id: 79995258-07c8-4b5f-ab3e-337ee7b27f15 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1613 - speciesSurveyCode: HOPLMED - weightEnabled: true -- !SpeciesProtocol - id: 83edf137-e86a-42a3-973d-5d5760123de4 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 2630 - speciesSurveyCode: HYDRMIR - weightEnabled: true -- !SpeciesProtocol - id: 3c73bd96-e45f-4da2-a698-1e415c023ea9 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1537 - speciesSurveyCode: HYMEITA - weightEnabled: true -- !SpeciesProtocol - id: 08c42071-df40-41d6-a8d8-74e90517e388 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1756 - speciesSurveyCode: HYPEIMM - weightEnabled: true -- !SpeciesProtocol - id: 99c93f66-0c76-4ecb-bbd4-75934f0bfca0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1755 - speciesSurveyCode: HYPELAN - weightEnabled: true -- !SpeciesProtocol - id: 7b46d8fe-94c5-4644-9518-495b201c74d4 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 302 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 507 - speciesSurveyCode: ILLECOI - weightEnabled: true -- !SpeciesProtocol - id: 2181825e-3478-40b6-800f-28857e1f09aa - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1730 - speciesSurveyCode: LABRBER - weightEnabled: true -- !SpeciesProtocol - id: 5ffc7e99-aab1-41bb-a5c6-d749b71ac0cd - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1729 - speciesSurveyCode: LABRBIM - weightEnabled: true -- !SpeciesProtocol - id: 2edd78f8-0679-49d5-b1b7-104ff3a01351 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1728 - speciesSurveyCode: LABRUSZ - weightEnabled: true -- !SpeciesProtocol - id: bd3edd25-d865-4a8a-acd4-2af278ae499a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1231 - speciesSurveyCode: LAMNNAS - weightEnabled: true -- !SpeciesProtocol - id: 94b18f44-3d1c-4ac2-9c22-9ba52f62938c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 789 - speciesSurveyCode: LAMPANZ - weightEnabled: true -- !SpeciesProtocol - id: 60c170ca-d9e0-452f-8521-6837652f7dd0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1430 - speciesSurveyCode: LAMPATE - weightEnabled: true -- !SpeciesProtocol - id: 155cb074-0d32-4b70-878f-95f5f9808528 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1429 - speciesSurveyCode: LAMPCRO - weightEnabled: true -- !SpeciesProtocol - id: 6fd09561-fabd-4ef9-9205-9aaf926abc40 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4884 - speciesSurveyCode: LAMPINT - weightEnabled: true -- !SpeciesProtocol - id: 2e9540f0-c1c4-467b-bd6b-be30bb64e108 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1431 - speciesSurveyCode: LAMPMAC - weightEnabled: true -- !SpeciesProtocol - id: f6941ce3-c9c6-42af-98df-d8cf734ec933 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1961 - speciesSurveyCode: LEPIBOS - weightEnabled: true -- !SpeciesProtocol - id: 4aac5dea-24b2-4ed6-9111-92a40063a421 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1768 - speciesSurveyCode: LEPICAU - weightEnabled: true -- !SpeciesProtocol - id: 3a203233-24ba-407a-8b35-e7163fa0a0b0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1917 - speciesSurveyCode: LEPICAV - weightEnabled: true -- !SpeciesProtocol - id: 83f620ae-31f6-45b2-8b02-9d1d14fc3004 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1591 - speciesSurveyCode: LEPIEQU - weightEnabled: true -- !SpeciesProtocol - id: 6b5fd311-746c-4d89-948d-aa7a3f35a127 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1960 - speciesSurveyCode: LEPIWHI - weightEnabled: true -- !SpeciesProtocol - id: e1239ed1-f858-4e3c-8165-38a181a1145d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1464 - speciesSurveyCode: LEPTLON - weightEnabled: true -- !SpeciesProtocol - id: ad00dcca-591c-44c3-afda-9bd7aebfc692 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1791 - speciesSurveyCode: LESUFRI - weightEnabled: true -- !SpeciesProtocol - id: 5222b22c-65bd-415d-a583-6860fac56edb - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1986 - speciesSurveyCode: LIMALIM - weightEnabled: true -- !SpeciesProtocol - id: 7340354d-2dc8-4512-bd2f-f921594b5556 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1944 - speciesSurveyCode: LIPALIP - weightEnabled: true -- !SpeciesProtocol - id: eddb09c2-015c-4a01-bde8-19c0703ead99 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1943 - speciesSurveyCode: LIPARIZ - weightEnabled: true -- !SpeciesProtocol - id: 2a74c0da-d3ae-499c-98f6-d5ecfbccedd3 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1710 - speciesSurveyCode: LITHMOR - weightEnabled: true -- !SpeciesProtocol - id: e9d54516-afeb-4139-8c32-5e878591761a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1882 - speciesSurveyCode: LIZAAUR - weightEnabled: true -- !SpeciesProtocol - id: cef5250c-6161-4a02-bd4a-18e22979ee0a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1881 - speciesSurveyCode: LIZARAM - weightEnabled: true -- !SpeciesProtocol - id: 54a55abf-de90-4d85-92d9-6757693a2499 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1435 - speciesSurveyCode: LOBIGEM - weightEnabled: true -- !SpeciesProtocol - id: e00ea321-8c0f-4fd7-9382-4d0f0ca60b00 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 302 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 12582 - speciesSurveyCode: LOLIFOR - weightEnabled: true -- !SpeciesProtocol - id: def8c536-9449-4c34-b288-8208c628e6c1 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 302 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 489 - speciesSurveyCode: LOLIVUL - weightEnabled: true -- !SpeciesProtocol - id: 9f89ba47-2c38-400b-b524-974100141802 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 2050 - speciesSurveyCode: LOPHBUD - weightEnabled: true -- !SpeciesProtocol - id: e5b5d6d3-9b88-4278-b16e-23cf1ba265f8 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 2049 - speciesSurveyCode: LOPHPIS - weightEnabled: true -- !SpeciesProtocol - id: 08f75442-292b-4bca-b6e5-95ea7f5479a0 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1131 - speciesSurveyCode: MACRAFF - weightEnabled: true -- !SpeciesProtocol - id: 684be00f-3e3c-4e36-b15b-24e1dd3ef87b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1523 - speciesSurveyCode: MACRBER - weightEnabled: true -- !SpeciesProtocol - id: b2666730-212c-40ea-b075-419af56a33d7 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1076 - speciesSurveyCode: MACRPUB - weightEnabled: true -- !SpeciesProtocol - id: d567a2f2-5aeb-46ee-b2b9-c56b7a974555 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1497 - speciesSurveyCode: MACRSCO - weightEnabled: true -- !SpeciesProtocol - id: 3f8c160d-1878-4654-9b4a-aa66b2569eb7 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1110 - speciesSurveyCode: MAJABRA - weightEnabled: true -- !SpeciesProtocol - id: a0ffeb60-5dd9-4488-9892-2cfedc11a8c0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1530 - speciesSurveyCode: MALALAE - weightEnabled: true -- !SpeciesProtocol - id: beb8d665-1c7a-4bc6-bb78-1593e35f1800 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2639 - speciesSurveyCode: MAULARG - weightEnabled: true -- !SpeciesProtocol - id: 8d163203-ddeb-493a-8300-b4be90cca719 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6829 - speciesSurveyCode: MAULMAU - weightEnabled: true -- !SpeciesProtocol - id: 814bf5ed-48c0-4e79-a986-b25871c51e1a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2640 - speciesSurveyCode: MAULMIC - weightEnabled: true -- !SpeciesProtocol - id: daf24f5c-2a7e-42ca-bdff-68a00a5ff7b9 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1379 - speciesSurveyCode: MAURMUE - weightEnabled: true -- !SpeciesProtocol - id: f23a9da5-9675-441c-a813-269a456d3ad9 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1378 - speciesSurveyCode: MAUROLZ - weightEnabled: true -- !SpeciesProtocol - id: 2ea002ff-2959-493d-a473-def1646ba0fc - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 839 - speciesSurveyCode: MEGANOR - weightEnabled: true -- !SpeciesProtocol - id: 04e5c84b-7f3e-4842-9c8e-9ce2c2d3df1a - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - - 196 - speciesReferenceTaxonId: 1549 - speciesSurveyCode: MELAAEG - weightEnabled: true -- !SpeciesProtocol - id: 0af1bfb6-7fb1-4518-a532-a23fed9d1148 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1848 - speciesSurveyCode: MELAATL - weightEnabled: true -- !SpeciesProtocol - id: 11895dfe-def9-478b-815f-d4caec5a87be - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2643 - speciesSurveyCode: MELABAR - weightEnabled: true -- !SpeciesProtocol - id: de25b4a8-fcb7-46c6-b8e1-7ca2f3fdf131 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1548 - speciesSurveyCode: MELAZUG - weightEnabled: true -- !SpeciesProtocol - id: 5f7e400c-6a03-4092-9ccf-0031823b3a14 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - - 196 - speciesReferenceTaxonId: 1540 - speciesSurveyCode: MERLMCC - weightEnabled: true -- !SpeciesProtocol - id: 2a8122cf-d238-4820-a7b9-eacaf1f302bd - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - - 196 - speciesReferenceTaxonId: 1551 - speciesSurveyCode: MERLMNG - weightEnabled: true -- !SpeciesProtocol - id: 16921fae-eeac-48c4-855e-4484aad81427 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1988 - speciesSurveyCode: MICRKIT - weightEnabled: true -- !SpeciesProtocol - id: d5887f0e-bd99-4f66-a967-8fcff8224b32 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - - 196 - speciesReferenceTaxonId: 1553 - speciesSurveyCode: MICRPOU - weightEnabled: true -- !SpeciesProtocol - id: 7467ee30-cc51-4004-a45e-4f1ecddd8fc5 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2011 - speciesSurveyCode: MICRVAR - weightEnabled: true -- !SpeciesProtocol - id: 6e8b3d2e-09cc-4bee-a95f-1a287948133f - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2036 - speciesSurveyCode: MOLAMOL - weightEnabled: true -- !SpeciesProtocol - id: 5de5e20f-343f-4d2b-bbb5-ae2925b4dd96 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1568 - speciesSurveyCode: MOLVMAC - weightEnabled: true -- !SpeciesProtocol - id: 7986e663-1889-4d35-8494-0c879e541ac0 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1566 - speciesSurveyCode: MOLVMOL - weightEnabled: true -- !SpeciesProtocol - id: f431a0c5-e81f-4f85-9319-f5af021595dd - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1593 - speciesSurveyCode: MORAMOR - weightEnabled: true -- !SpeciesProtocol - id: 0eed3b64-47bc-4f85-9b1d-655d472b60ad - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1690 - speciesSurveyCode: MULLSUR - weightEnabled: true -- !SpeciesProtocol - id: a8feb2c8-e665-413c-a443-c24600023d8c - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1016 - speciesSurveyCode: MUNIBAM - weightEnabled: true -- !SpeciesProtocol - id: 5b4d30e3-bcb8-49f4-a48d-5e7f37a080c5 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1015 - speciesSurveyCode: MUNIDAZ - weightEnabled: true -- !SpeciesProtocol - id: f45ebce1-18f0-4661-a169-01c5df8a37a6 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1017 - speciesSurveyCode: MUNIINT - weightEnabled: true -- !SpeciesProtocol - id: a75249a6-b576-42b2-b199-7320fe0a98c5 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1257 - speciesSurveyCode: MUSTAST - weightEnabled: true -- !SpeciesProtocol - id: 60bf0df1-c77e-43a9-8853-dd200dd63146 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1255 - speciesSurveyCode: MUSTELZ - weightEnabled: true -- !SpeciesProtocol - id: 2d7eef32-749c-498e-9279-4e2233d1a168 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2533 - speciesSurveyCode: MYCTOPZ - weightEnabled: true -- !SpeciesProtocol - id: 944db3c6-d870-4f03-8abc-9a985a6feb65 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1415 - speciesSurveyCode: MYCTPUN - weightEnabled: true -- !SpeciesProtocol - id: f08b2e04-b756-468b-8303-98477264a813 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1329 - speciesSurveyCode: MYLIAQU - weightEnabled: true -- !SpeciesProtocol - id: cf5b0986-53cb-45fb-88d1-8e8651bf5b5c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1927 - speciesSurveyCode: MYOXSCU - weightEnabled: true -- !SpeciesProtocol - id: 6c9f9127-d15e-420f-9a2d-8e2cf3963744 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 740 - speciesSurveyCode: MYSIDAX - weightEnabled: true -- !SpeciesProtocol - id: db79fe5f-5832-4e59-a987-e36a288efe8a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1215 - speciesSurveyCode: MYXIGLU - weightEnabled: true -- !SpeciesProtocol - id: c78aa44b-f133-440f-94df-cc9225ba9e94 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1458 - speciesSurveyCode: NEMISCO - weightEnabled: true -- !SpeciesProtocol - id: e7a49d2d-2201-4d90-aa79-833be659a883 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4392 - speciesSurveyCode: NEOSMAC - weightEnabled: true -- !SpeciesProtocol - id: 7f631e4e-a8ef-4599-a0af-d6998c6e7081 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 299 - mandatorySampleCategoryId: - - 198 - - 196 - speciesReferenceTaxonId: 949 - speciesSurveyCode: NEPHNOR - weightEnabled: true -- !SpeciesProtocol - id: 6e74a424-daa2-4bbe-86a2-2937cfa8371b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1506 - speciesSurveyCode: NEROLUM - weightEnabled: true -- !SpeciesProtocol - id: aa2a0373-66bd-40a0-9aec-71b3c7c787c8 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1508 - speciesSurveyCode: NEROOPH - weightEnabled: true -- !SpeciesProtocol - id: 7b66659c-e9cd-4d97-9133-650bed39fb56 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1527 - speciesSurveyCode: NEZUAEQ - weightEnabled: true -- !SpeciesProtocol - id: 579ae3d1-4778-49a3-801e-b6ea5e34c408 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1528 - speciesSurveyCode: NEZUSCL - weightEnabled: true -- !SpeciesProtocol - id: b65cdc42-00fd-4712-a444-f760c9eb762a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2649 - speciesSurveyCode: NORMOPE - weightEnabled: true -- !SpeciesProtocol - id: da646074-6dc4-4bdf-a234-0f5efa7624ea - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1483 - speciesSurveyCode: NOTABON - weightEnabled: true -- !SpeciesProtocol - id: 8b2459c0-edcb-4696-9013-844a9052547d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4389 - speciesSurveyCode: NOTOCAU - weightEnabled: true -- !SpeciesProtocol - id: a158671e-dc20-4e01-9e20-7cb8941522ab - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1439 - speciesSurveyCode: NOTOKRO - weightEnabled: true -- !SpeciesProtocol - id: f547a007-98ee-4398-80e3-063db39ff992 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1448 - speciesSurveyCode: NOTORIS - weightEnabled: true -- !SpeciesProtocol - id: 99c4f6b5-13ab-4764-a7b4-07766d1eb1ae - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1436 - speciesSurveyCode: NOTOSCZ - weightEnabled: true -- !SpeciesProtocol - id: 93af0756-d043-43ab-9598-28a31ea32085 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 512 - speciesSurveyCode: OCTOPOX - weightEnabled: true -- !SpeciesProtocol - id: 58f57fb7-12db-46b0-8f28-00fec2c7a3ff - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 513 - speciesSurveyCode: OCTOPUZ - weightEnabled: true -- !SpeciesProtocol - id: 1ab536bc-e356-4176-9b44-cdc72c986c7d - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 514 - speciesSurveyCode: OCTOVUL - weightEnabled: true -- !SpeciesProtocol - id: 1b7ab675-18bb-4e51-b3bf-d20e2461c910 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1857 - speciesSurveyCode: OPHIBAR - weightEnabled: true -- !SpeciesProtocol - id: 47184b0e-82d5-4597-8cde-8888ab98805e - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 370 - speciesSurveyCode: OSTREDU - weightEnabled: true -- !SpeciesProtocol - id: c7793af7-a066-4880-b8c6-85ec6b2939db - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1714 - speciesSurveyCode: PAGEACA - weightEnabled: true -- !SpeciesProtocol - id: b51f22f1-ca6e-403a-b66b-2beac1600d58 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1715 - speciesSurveyCode: PAGEBOG - weightEnabled: true -- !SpeciesProtocol - id: d949cf3b-5526-4266-b3d5-7e0dc1513c1e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1713 - speciesSurveyCode: PAGEERY - weightEnabled: true -- !SpeciesProtocol - id: fd24c279-c039-4d59-8dad-0c9e0e622c0c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1712 - speciesSurveyCode: PAGELLZ - weightEnabled: true -- !SpeciesProtocol - id: fc8bddc2-584b-4d33-ba9f-bb6528d9a338 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1695 - speciesSurveyCode: PAGRPAG - weightEnabled: true -- !SpeciesProtocol - id: 9f064dc3-aa86-4740-b98e-dd0c4c26908f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 920 - speciesSurveyCode: PALASER - weightEnabled: true -- !SpeciesProtocol - id: f64afed5-eab7-410d-a0a2-c07027ba7b0d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 299 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 958 - speciesSurveyCode: PALIMAU - weightEnabled: true -- !SpeciesProtocol - id: 69b55d5a-8db5-4655-ab3f-f6b617292c35 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 299 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 957 - speciesSurveyCode: PALIVUL - weightEnabled: true -- !SpeciesProtocol - id: 750d01c3-32f6-4710-a364-fd281b7080b0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1444 - speciesSurveyCode: PARACOR - weightEnabled: true -- !SpeciesProtocol - id: 31182cd3-6249-4dde-b758-4a15ecfe550a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1028 - speciesSurveyCode: PARAMOL - weightEnabled: true -- !SpeciesProtocol - id: afc925ff-e22a-43ab-a7ba-e95e4f756264 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3561 - speciesSurveyCode: PARASUL - weightEnabled: true -- !SpeciesProtocol - id: 1885ef26-e41c-46d1-acc9-803632d76b00 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 867 - speciesSurveyCode: PASIMUL - weightEnabled: true -- !SpeciesProtocol - id: 1ec16174-bfd8-4b7d-a23f-b635f410da1f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 868 - speciesSurveyCode: PASISIV - weightEnabled: true -- !SpeciesProtocol - id: e0c7be8b-c660-4dc3-84d0-77529dd52749 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 363 - speciesSurveyCode: PECTMAX - weightEnabled: true -- !SpeciesProtocol - id: a7eff104-9634-47fe-9479-f9c7e205bf51 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1212 - speciesSurveyCode: PETRMAR - weightEnabled: true -- !SpeciesProtocol - id: 2190e410-0151-41fd-b5f6-a550613985dc - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 622 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1837 - speciesSurveyCode: PHOLGUN - weightEnabled: true -- !SpeciesProtocol - id: 3d868eca-5df0-4e86-a49b-700a8c15d184 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 622 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 5857 - speciesSurveyCode: PHOTPYC - weightEnabled: true -- !SpeciesProtocol - id: 738112c8-d405-4673-b474-3f3d4f873d57 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1964 - speciesSurveyCode: PHRYNOR - weightEnabled: true -- !SpeciesProtocol - id: ae6ba222-cca3-4381-95b4-ef0783af7bec - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1573 - speciesSurveyCode: PHYCBLE - weightEnabled: true -- !SpeciesProtocol - id: c833c663-284e-4302-be9f-5ac4e0416da9 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1990 - speciesSurveyCode: PLATFLE - weightEnabled: true -- !SpeciesProtocol - id: 270ceb5d-3e2b-4c1b-bc2d-069c4043288c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1978 - speciesSurveyCode: PLEUPLA - weightEnabled: true -- !SpeciesProtocol - id: 802a1818-6b4a-4b5a-b7eb-df2d6db9b9b2 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1555 - speciesSurveyCode: POLLPOL - weightEnabled: true -- !SpeciesProtocol - id: 590861c8-3960-4061-8849-4b6a27c749bf - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1556 - speciesSurveyCode: POLLVIR - weightEnabled: true -- !SpeciesProtocol - id: d04513ad-dbee-42bd-903c-c03fccf9107b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1641 - speciesSurveyCode: POLYAME - weightEnabled: true -- !SpeciesProtocol - id: 8a200365-1c7a-4fff-96fd-2bd56e6a71a3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 153 - speciesSurveyCode: POLYCHZ - weightEnabled: true -- !SpeciesProtocol - id: a866fb3b-f1c2-4b17-aaf2-d209cfbf7c71 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1372 - speciesSurveyCode: POLYCOR - weightEnabled: true -- !SpeciesProtocol - id: 1a596120-db48-464a-8fd0-adb01451e2c0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4393 - speciesSurveyCode: POLYTHA - weightEnabled: true -- !SpeciesProtocol - id: 898747f4-320d-4442-b890-dc1274776ef8 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 953 - speciesSurveyCode: POLYTYP - weightEnabled: true -- !SpeciesProtocol - id: 17195284-bba1-406f-96ec-03dfc99ef747 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4394 - speciesSurveyCode: POMALOZ - weightEnabled: true -- !SpeciesProtocol - id: a2e4031e-bc5a-4c1a-91ee-092a78b75818 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1804 - speciesSurveyCode: POMAMIN - weightEnabled: true -- !SpeciesProtocol - id: ebe27fca-9bf7-4cf3-a95b-f64e2515953c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1807 - speciesSurveyCode: POMANOR - weightEnabled: true -- !SpeciesProtocol - id: 7fc7865a-42b7-4ad7-b5f1-5299dee063ba - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1803 - speciesSurveyCode: POMATOZ - weightEnabled: true -- !SpeciesProtocol - id: 1893734c-3299-4224-86f4-55e17b065a26 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1957 - speciesSurveyCode: PSETMAX - weightEnabled: true -- !SpeciesProtocol - id: 55a175c4-22e8-4176-9480-3f1725eda45c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1306 - speciesSurveyCode: RAJABAI - weightEnabled: true -- !SpeciesProtocol - id: f43c81eb-bd8e-4370-8492-811fed8c4962 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 2654 - speciesSurveyCode: RAJABAT - weightEnabled: true -- !SpeciesProtocol - id: 4d1dacce-be57-41ab-bdb8-18edd742ab5e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1301 - speciesSurveyCode: RAJABRA - weightEnabled: true -- !SpeciesProtocol - id: 76e1ca33-1d1f-4ace-9feb-e09656809638 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1310 - speciesSurveyCode: RAJACIR - weightEnabled: true -- !SpeciesProtocol - id: ee305308-78f1-4405-970e-8111852678a3 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1302 - speciesSurveyCode: RAJACLA - weightEnabled: true -- !SpeciesProtocol - id: 64c2d7f4-f0e0-49cd-8728-9cf376efc886 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1309 - speciesSurveyCode: RAJAFUL - weightEnabled: true -- !SpeciesProtocol - id: b2a26b14-6201-4fd9-813a-335e1fdb8c0a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 2658 - speciesSurveyCode: RAJAKUK - weightEnabled: true -- !SpeciesProtocol - id: f7bc1566-a681-45bf-954e-a935eed07f27 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1303 - speciesSurveyCode: RAJAMIC - weightEnabled: true -- !SpeciesProtocol - id: 8aecae10-3e2b-4260-9b07-52b00acf7cec - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1304 - speciesSurveyCode: RAJAMON - weightEnabled: true -- !SpeciesProtocol - id: b9757c41-be0e-4feb-ba92-2ea72dab1584 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1311 - speciesSurveyCode: RAJANAE - weightEnabled: true -- !SpeciesProtocol - id: fa25cc1d-9cc0-42b1-9560-60ff0e68cf11 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1308 - speciesSurveyCode: RAJAOXY - weightEnabled: true -- !SpeciesProtocol - id: 0432eafc-9f0c-4b2b-8a25-c2c02c6378b0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1318 - speciesSurveyCode: RAJAUND - weightEnabled: true -- !SpeciesProtocol - id: 817e8614-9732-4916-8d54-3282bbbc3a72 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1575 - speciesSurveyCode: RANIRAN - weightEnabled: true -- !SpeciesProtocol - id: dd3c4c6e-6d30-4805-8e74-d4135947a268 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6826 - speciesSurveyCode: REMOBRA - weightEnabled: true -- !SpeciesProtocol - id: e148379c-d2da-4494-a539-14886a3cdc63 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2021 - speciesSurveyCode: REMOREM - weightEnabled: true -- !SpeciesProtocol - id: 3f8e8470-79be-4e15-ac3c-12a058aaae3f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 471 - speciesSurveyCode: ROSSMAC - weightEnabled: true -- !SpeciesProtocol - id: 2d039994-2f7d-4b8a-918d-3c9d15160b0f - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3788 - speciesSurveyCode: RUVEPRE - weightEnabled: true -- !SpeciesProtocol - id: aa9224ff-baa1-4def-be8f-046ed60f28fb - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4001 - speciesSurveyCode: SAGASCH - weightEnabled: true -- !SpeciesProtocol - id: a2d4c350-8cd0-46d6-bcb7-6fb95b62c47d - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 307 - mandatorySampleCategoryId: - - 198 - speciesReferenceTaxonId: 1351 - speciesSurveyCode: SARDPIL - weightEnabled: true -- !SpeciesProtocol - id: a7030188-28a3-4a04-8bef-4dc8c19f1c63 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1775 - speciesSurveyCode: SARDSAR - weightEnabled: true -- !SpeciesProtocol - id: 723c2342-8142-4d0c-ad25-022c91956c67 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 3789 - speciesSurveyCode: SCOMCOL - weightEnabled: true -- !SpeciesProtocol - id: ec81db3c-b2d4-40a2-ab36-daf220e0df3e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1491 - speciesSurveyCode: SCOMSAU - weightEnabled: true -- !SpeciesProtocol - id: 16f4a094-1904-4e50-aff9-1f2dcab3a909 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - speciesReferenceTaxonId: 1772 - speciesSurveyCode: SCOMSCO - weightEnabled: true -- !SpeciesProtocol - id: 529c8a5f-7697-4f88-8d2f-23d5bb2d6d2f - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1956 - speciesSurveyCode: SCOPRHO - weightEnabled: true -- !SpeciesProtocol - id: d239abe5-0ed0-4c60-8528-49229ffee0f7 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1895 - speciesSurveyCode: SCORELO - weightEnabled: true -- !SpeciesProtocol - id: d7d3fcd0-2dbb-4329-a4f1-c98ec6eb6889 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1897 - speciesSurveyCode: SCORLOP - weightEnabled: true -- !SpeciesProtocol - id: 640236a1-55a0-492c-bda6-31b74d25a213 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1899 - speciesSurveyCode: SCORNOT - weightEnabled: true -- !SpeciesProtocol - id: 0807b0c8-87c6-4caa-a88e-bb2e5db4be44 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1894 - speciesSurveyCode: SCORPAZ - weightEnabled: true -- !SpeciesProtocol - id: 0ca1624a-4bc2-4fcc-baeb-4755986c1f12 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1896 - speciesSurveyCode: SCORPOR - weightEnabled: true -- !SpeciesProtocol - id: 808b9cc7-5f20-4314-b80c-be28b90bdd60 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1900 - speciesSurveyCode: SCORSCR - weightEnabled: true -- !SpeciesProtocol - id: 24e50cd6-92cd-4331-adbc-b8262eac3e94 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 962 - speciesSurveyCode: SCYLARC - weightEnabled: true -- !SpeciesProtocol - id: 2c35ca09-e029-4999-85d0-b4c784fdbe6c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1242 - speciesSurveyCode: SCYLCAN - weightEnabled: true -- !SpeciesProtocol - id: f59a13d1-b7d8-49b8-af5b-6e270a8e99a0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1243 - speciesSurveyCode: SCYLSTE - weightEnabled: true -- !SpeciesProtocol - id: adf573b0-62af-47aa-a547-0da2146dd783 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1280 - speciesSurveyCode: SCYMRIN - weightEnabled: true -- !SpeciesProtocol - id: d0e10d92-b43d-4a03-a171-c5a6704366f7 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6831 - speciesSurveyCode: SEARKOE - weightEnabled: true -- !SpeciesProtocol - id: ae99eb3f-4913-427e-acf8-e12e164ae17a - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 468 - speciesSurveyCode: SEPIELE - weightEnabled: true -- !SpeciesProtocol - id: 4e2fe07c-0bfe-4fe1-be67-371e715f6a94 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 467 - speciesSurveyCode: SEPIOFF - weightEnabled: true -- !SpeciesProtocol - id: 1de1082f-b74e-4a83-978c-a24050bafd81 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 476 - speciesSurveyCode: SEPIOLZ - weightEnabled: true -- !SpeciesProtocol - id: 9927c03a-4cd7-4f73-96ae-056e15b67559 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 469 - speciesSurveyCode: SEPIORB - weightEnabled: true -- !SpeciesProtocol - id: efe7de69-6e1d-4461-86de-afafb5c45edd - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 862 - speciesSurveyCode: SERGROB - weightEnabled: true -- !SpeciesProtocol - id: 06faef21-34bb-4da7-9dba-0f3bef846da7 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2564 - speciesSurveyCode: SERIOLZ - weightEnabled: true -- !SpeciesProtocol - id: 68b18cb7-fae6-4e57-86ac-3ce6cbf8f151 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1627 - speciesSurveyCode: SERRANZ - weightEnabled: true -- !SpeciesProtocol - id: 9df92cb6-08b9-431b-bc37-3f9c71885e96 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 2670 - speciesSurveyCode: SERRBEA - weightEnabled: true -- !SpeciesProtocol - id: bc7f7e40-e5af-4c8b-b470-06f6eebdfb84 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1628 - speciesSurveyCode: SERRCAB - weightEnabled: true -- !SpeciesProtocol - id: 0a0608c0-d404-4e38-afb4-6b6154a4ed1c - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1629 - speciesSurveyCode: SERRHEP - weightEnabled: true -- !SpeciesProtocol - id: e2d18330-32b7-43d3-b912-4dfa5973bf97 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1631 - speciesSurveyCode: SERRSCR - weightEnabled: true -- !SpeciesProtocol - id: cd1ed12a-b1f0-4843-9bf2-b9b8c67936cb - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 2000 - speciesSurveyCode: SOLELAS - weightEnabled: true -- !SpeciesProtocol - id: 8ccd18a2-a4b9-46fa-88a0-c4bebcae7206 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1997 - speciesSurveyCode: SOLESEN - weightEnabled: true -- !SpeciesProtocol - id: 4a13cfce-3899-48f8-8bd8-fc37cf43a111 - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1996 - speciesSurveyCode: SOLEVUL - weightEnabled: true -- !SpeciesProtocol - id: 87028e55-dd66-47c0-90e2-eda178cd8cbc - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1693 - speciesSurveyCode: SPARAUT - weightEnabled: true -- !SpeciesProtocol - id: 5fad7f0b-d9fc-4698-88ad-b45b604abdae - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1519 - speciesSurveyCode: SPINSPI - weightEnabled: true -- !SpeciesProtocol - id: 329f08f9-a5a4-44d5-ab1c-9e157503ba04 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1718 - speciesSurveyCode: SPONCAN - weightEnabled: true -- !SpeciesProtocol - id: 859e98d1-d2b2-4cc9-a379-20b0f8abb25d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 307 - mandatorySampleCategoryId: - - 198 - speciesReferenceTaxonId: 1356 - speciesSurveyCode: SPRASPR - weightEnabled: true -- !SpeciesProtocol - id: 166b75a3-7f74-4a6e-bc83-09e8419eafce - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1266 - speciesSurveyCode: SQUAACA - weightEnabled: true -- !SpeciesProtocol - id: ce080c83-15fd-472b-a64e-1bfc9eee07c6 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1265 - speciesSurveyCode: SQUALUZ - weightEnabled: true -- !SpeciesProtocol - id: ae879a86-35a7-4503-af1e-343eadff965f - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 831 - speciesSurveyCode: SQUIMAN - weightEnabled: true -- !SpeciesProtocol - id: b3d07ff0-89ac-4da1-aee6-a0ef914e0561 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6833 - speciesSurveyCode: STERDIA - weightEnabled: true -- !SpeciesProtocol - id: 070f0610-1841-423d-a3b4-f8fd03ae42bf - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 6835 - speciesSurveyCode: STOMBOA - weightEnabled: true -- !SpeciesProtocol - id: c7759567-ad69-479e-9f02-a9f5cfc7dc36 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1420 - speciesSurveyCode: SYMBVER - weightEnabled: true -- !SpeciesProtocol - id: d96c5577-94a6-436c-b0c2-3723a418b8bd - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1739 - speciesSurveyCode: SYMPBAI - weightEnabled: true -- !SpeciesProtocol - id: 8c402c9f-a381-4616-a10b-a54294baff5a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1738 - speciesSurveyCode: SYMPMEO - weightEnabled: true -- !SpeciesProtocol - id: e065231b-64df-450d-bbc0-f6f1408dd271 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4424 - speciesSurveyCode: SYMPROI - weightEnabled: true -- !SpeciesProtocol - id: 7e1aba92-7f97-4628-ac47-bd3b638c0257 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1743 - speciesSurveyCode: SYMPROS - weightEnabled: true -- !SpeciesProtocol - id: 8863cf66-6d87-48d9-b172-cce5eccfc8a4 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1479 - speciesSurveyCode: SYNAKAU - weightEnabled: true -- !SpeciesProtocol - id: 63b83df6-afeb-4000-b60b-f9aa8f6ebf8f - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1500 - speciesSurveyCode: SYNGACU - weightEnabled: true -- !SpeciesProtocol - id: 53dceec6-facb-4f89-93c9-805ca0d0dc1b - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1499 - speciesSurveyCode: SYNGNAZ - weightEnabled: true -- !SpeciesProtocol - id: 6638403d-ae6c-4839-bcf6-795f59426707 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1502 - speciesSurveyCode: SYNGROS - weightEnabled: true -- !SpeciesProtocol - id: e0bcd336-8db0-46c8-834b-1af09a5454a9 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1504 - speciesSurveyCode: SYNGTYP - weightEnabled: true -- !SpeciesProtocol - id: 415afc4d-b1d6-4d6e-9dd0-134a0fd5c5be - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4856 - speciesSurveyCode: TAANBAT - weightEnabled: true -- !SpeciesProtocol - id: 26147a1b-92e0-4b86-9881-81044da1aea7 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 4027 - speciesSurveyCode: TALISMZ - weightEnabled: true -- !SpeciesProtocol - id: c6a51b1a-7958-475e-85a9-2857af6798f5 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 508 - speciesSurveyCode: TODAEBL - weightEnabled: true -- !SpeciesProtocol - id: 54e8569b-3e5b-4ac2-9c8f-edae0c3f72a3 - countIfNoFrequencyEnabled: true - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 509 - speciesSurveyCode: TODASAG - weightEnabled: true -- !SpeciesProtocol - id: b307d8fa-d2da-4e06-9bf5-1a85d16a06e7 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1297 - speciesSurveyCode: TORPMAR - weightEnabled: true -- !SpeciesProtocol - id: 8259cca3-ec1d-4f0c-8ee1-74fcc975c18d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 196 - speciesReferenceTaxonId: 1298 - speciesSurveyCode: TORPNOB - weightEnabled: true -- !SpeciesProtocol - id: f0e90f53-471a-4b89-b43a-2d46383f27ac - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1906 - speciesSurveyCode: TRACCRI - weightEnabled: true -- !SpeciesProtocol - id: 8961639a-ebc4-4201-a3e2-c1f81bb1590d - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1759 - speciesSurveyCode: TRACDRA - weightEnabled: true -- !SpeciesProtocol - id: eefa816a-6c02-421e-ba79-18601e08f4a7 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - speciesReferenceTaxonId: 1663 - speciesSurveyCode: TRACMED - weightEnabled: true -- !SpeciesProtocol - id: c87327db-5058-4df5-a412-48a5220ae879 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1664 - speciesSurveyCode: TRACPIC - weightEnabled: true -- !SpeciesProtocol - id: d6fe4925-a289-4888-b7f7-c5387199ee2e - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1525 - speciesSurveyCode: TRACTRC - weightEnabled: true -- !SpeciesProtocol - id: dc5738bb-ed38-4814-a016-9fabfd833212 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - speciesReferenceTaxonId: 1662 - speciesSurveyCode: TRACTRU - weightEnabled: true -- !SpeciesProtocol - id: 9ddedc54-f40e-4d7e-ad45-85375838f81a - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1922 - speciesSurveyCode: TRIGLAS - weightEnabled: true -- !SpeciesProtocol - id: dd6b1cc2-ccd6-413c-b141-332a5a53491f - calcifySampleEnabled: true - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1921 - speciesSurveyCode: TRIGLUC - weightEnabled: true -- !SpeciesProtocol - id: b25c2425-d402-4e02-a5fb-2bddc2a4efa3 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1910 - speciesSurveyCode: TRIGLYR - weightEnabled: true -- !SpeciesProtocol - id: 43c8131c-9e5d-47b0-9fa3-8552b50caef7 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - speciesReferenceTaxonId: 1559 - speciesSurveyCode: TRISESM - weightEnabled: true -- !SpeciesProtocol - id: 9650b6a8-4f82-463d-8993-651af5b58c80 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - speciesReferenceTaxonId: 1560 - speciesSurveyCode: TRISLUS - weightEnabled: true -- !SpeciesProtocol - id: 162b5837-02c7-4ed4-bcd2-94fcd48f8479 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: - - 198 - speciesReferenceTaxonId: 1558 - speciesSurveyCode: TRISMIN - weightEnabled: true -- !SpeciesProtocol - id: 4b5b43a1-384e-4e6c-b5cb-cadae9586c18 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1683 - speciesSurveyCode: UMBRCAN - weightEnabled: true -- !SpeciesProtocol - id: 0544a26e-9627-4ba0-a04d-8ee8f5dff502 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1346 - speciesSurveyCode: XENOCOP - weightEnabled: true -- !SpeciesProtocol - id: b5a13312-14ea-4dc0-9c0b-58d01f2f0b56 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1781 - speciesSurveyCode: XIPHGLA - weightEnabled: true -- !SpeciesProtocol - id: 581f5072-4bb0-4a51-a709-7a3b761a42be - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1966 - speciesSurveyCode: ZEUGPUN - weightEnabled: true -- !SpeciesProtocol - id: 3223b3e1-a0f3-4c26-b16b-1cb18a8aece0 - countIfNoFrequencyEnabled: true - lengthStepPmfmId: 306 - mandatorySampleCategoryId: [] - speciesReferenceTaxonId: 1619 - speciesSurveyCode: ZEUSFAB - weightEnabled: true -vesselUseFeaturePmfmId: -- 173 -- 194 -- 230 -- 782 -- 843 -- 844 -- 846 -- 847 -- 848 -- 849 -- 850 -- 851 -- 857 -- 858 -- 859 -- 861 -- 862 -- 863 -- 881 -- 882 -- 883 +id: c6ee2088-9720-46c0-b8d2-8f21c902676f +name: Protocole EVHOE 2013 +benthos: +- !SpeciesProtocol + id: f9572cb1-908a-4c2f-a402-2ab57de3c1bf + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7 + speciesSurveyCode: MBPORIF + weightEnabled: true +- !SpeciesProtocol + id: f7330ac2-577e-4814-b2de-9be7bb7de70e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6129 + speciesSurveyCode: AXININF + weightEnabled: true +- !SpeciesProtocol + id: a0ec7f90-14e9-46aa-84cd-c3da82d81884 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4656 + speciesSurveyCode: SUBEFIC + weightEnabled: true +- !SpeciesProtocol + id: 49cba43a-786b-429e-ba70-77c412ff73bf + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12027 + speciesSurveyCode: DESMFRU + weightEnabled: true +- !SpeciesProtocol + id: e61064f4-6432-47d1-81c2-276300395720 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12 + speciesSurveyCode: CLHYDRZ + weightEnabled: true +- !SpeciesProtocol + id: 3e95c944-ec00-4784-9d8d-e6e6200b8c07 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4622 + speciesSurveyCode: ABIEABI + weightEnabled: true +- !SpeciesProtocol + id: 9c9a0160-e573-4e04-a9b0-849dd5b3de1b + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4685 + speciesSurveyCode: HYDAFAL + weightEnabled: true +- !SpeciesProtocol + id: 2670fa1e-9915-43d7-8023-6d0829e1128d + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4682 + speciesSurveyCode: NEMEANT + weightEnabled: true +- !SpeciesProtocol + id: cbd96316-f579-41e3-ace3-604ab169f268 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4667 + speciesSurveyCode: NEMERAM + weightEnabled: true +- !SpeciesProtocol + id: 7427a1b3-8dce-4cda-aa42-783a6c52d1d9 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4736 + speciesSurveyCode: HLECHAL + weightEnabled: true +- !SpeciesProtocol + id: d62953c3-3eb0-49e6-a601-6049f50bbe3f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 131 + speciesSurveyCode: CLANTHO + weightEnabled: true +- !SpeciesProtocol + id: 991bbe6f-69c3-4488-ae54-4f2f90315758 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4386 + speciesSurveyCode: ALCYGLO + weightEnabled: true +- !SpeciesProtocol + id: a5c99610-2593-4053-bb3c-2d4055c66f56 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3021 + speciesSurveyCode: ALCYDIG + weightEnabled: true +- !SpeciesProtocol + id: e4de06d8-e2b6-4d3b-8d36-891252ce6ef7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6804 + speciesSurveyCode: FUNIQUA + weightEnabled: true +- !SpeciesProtocol + id: 40e2c5ab-3e03-44b9-aea0-e6a88dec9229 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3949 + speciesSurveyCode: VERE + weightEnabled: true +- !SpeciesProtocol + id: a13b8659-7ce9-4a53-b2e3-bd9d1b1257e1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 134 + speciesSurveyCode: PENNPHO + weightEnabled: true +- !SpeciesProtocol + id: d4891eac-60e6-4b83-8372-d7324b0bd04a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3006 + speciesSurveyCode: PRTOGRI + weightEnabled: true +- !SpeciesProtocol + id: fb048cd5-3a12-4aab-8d23-c95bc6370dff + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2224 + speciesSurveyCode: ORACTIN + weightEnabled: true +- !SpeciesProtocol + id: b74d2b06-c0f1-4e32-a817-73603e45c1a4 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4734 + speciesSurveyCode: URTIEQU + weightEnabled: true +- !SpeciesProtocol + id: 564604d6-8f84-467d-a4fc-ceb3fc763093 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4623 + speciesSurveyCode: ACTU + weightEnabled: true +- !SpeciesProtocol + id: ebc2c884-d9c3-4eed-b362-85905bcbc206 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4626 + speciesSurveyCode: ADAMCAR + weightEnabled: true +- !SpeciesProtocol + id: 1a816d62-cd4a-4191-9352-14cf35a76a55 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4378 + speciesSurveyCode: CLLCPAR + weightEnabled: true +- !SpeciesProtocol + id: ecc5c8af-6ff0-4372-b7f8-d5e8d9eb8211 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4412 + speciesSurveyCode: METRSEN + weightEnabled: true +- !SpeciesProtocol + id: b161e1c7-02e1-4204-ae4c-52ded8cd94cd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4731 + speciesSurveyCode: ORSCLER + weightEnabled: true +- !SpeciesProtocol + id: c1005695-f40c-4933-8e55-e3fa6dce19b4 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4385 + speciesSurveyCode: CARYSMI + weightEnabled: true +- !SpeciesProtocol + id: 87e8c1b6-dada-4ed4-8765-91964ed4a6cb + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7230 + speciesSurveyCode: MADROCU + weightEnabled: true +- !SpeciesProtocol + id: 9d978f33-96f9-446e-b882-1078ce92246e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4418 + speciesSurveyCode: EPZAINC + weightEnabled: true +- !SpeciesProtocol + id: 75999a5f-9ac5-430e-8a44-a0bd8bb283a2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7327 + speciesSurveyCode: EPZAPAG + weightEnabled: true +- !SpeciesProtocol + id: b55d7c7f-4e51-432c-9bcf-1e7eb526d20d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 142 + speciesSurveyCode: MBNEMRT + weightEnabled: true +- !SpeciesProtocol + id: 7936fcee-1226-48f1-ab58-b29851edd391 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 145 + speciesSurveyCode: MBSIPUN + weightEnabled: true +- !SpeciesProtocol + id: 77b81959-a3e0-4f2c-957c-f90e3694ebbf + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 147 + speciesSurveyCode: SIPUNUD + weightEnabled: true +- !SpeciesProtocol + id: a25e6dd1-80b6-4907-8738-7d2342f81cca + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 150 + speciesSurveyCode: MBANNEL + weightEnabled: true +- !SpeciesProtocol + id: c568e73b-bf73-4732-92c2-8aeb551a32c1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 155 + speciesSurveyCode: APHRACU + weightEnabled: true +- !SpeciesProtocol + id: 10607c6b-0111-4535-bdb4-fd0329f6a6a3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4298 + speciesSurveyCode: LAET + weightEnabled: true +- !SpeciesProtocol + id: 66be114c-9b29-4f81-98ed-4643804a0735 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3240 + speciesSurveyCode: DIOPNEA + weightEnabled: true +- !SpeciesProtocol + id: e928f552-cbd4-4c4d-b39a-766727e52a06 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3241 + speciesSurveyCode: HYALTUB + weightEnabled: true +- !SpeciesProtocol + id: 240e91fd-43d5-43a1-a9af-3acc9536fe2c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7125 + speciesSurveyCode: FMCHAEO + weightEnabled: true +- !SpeciesProtocol + id: 57fc6b5d-7657-41c1-8206-b6291699460b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 211 + speciesSurveyCode: STERSCU + weightEnabled: true +- !SpeciesProtocol + id: ee1469c9-735c-4ba3-805e-d5af019f6fad + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 156 + speciesSurveyCode: OWENFUS + weightEnabled: true +- !SpeciesProtocol + id: be285fa3-8399-4207-842a-35fa33523d3d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 203 + speciesSurveyCode: LANICON + weightEnabled: true +- !SpeciesProtocol + id: 0601fb3a-7dac-483a-a2f8-51e70995e69f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3032 + speciesSurveyCode: FMSABED + weightEnabled: true +- !SpeciesProtocol + id: 779d80e3-3663-499e-9f41-6f88cd4f9058 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 209 + speciesSurveyCode: FMSERPU + weightEnabled: true +- !SpeciesProtocol + id: 78d8ec73-387b-4bb2-b9b1-c5a4c398bcdc + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 224 + speciesSurveyCode: MBBRYOZ + weightEnabled: true +- !SpeciesProtocol + id: 5b860a72-fdbc-4392-9dd8-a52b9c31fadb + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6222 + speciesSurveyCode: FMPHIDO + weightEnabled: true +- !SpeciesProtocol + id: a26765e2-4e3f-471f-a916-9c4d039c469a + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6669 + speciesSurveyCode: PENPFAS + weightEnabled: true +- !SpeciesProtocol + id: 341226be-0057-42e1-b886-06d4359d6666 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4762 + speciesSurveyCode: CELL + weightEnabled: true +- !SpeciesProtocol + id: 827f98c7-3de5-4995-9946-c779cbe358a4 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3549 + speciesSurveyCode: FLUTFOL + weightEnabled: true +- !SpeciesProtocol + id: 74bd6921-0052-4adc-a79f-a795c2856834 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3974 + speciesSurveyCode: ALCD + weightEnabled: true +- !SpeciesProtocol + id: 5980e84e-b812-4a9d-9ba3-60c4b1ab2de8 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4766 + speciesSurveyCode: PORECOM + weightEnabled: true +- !SpeciesProtocol + id: 6ff00ef8-709d-45a1-b810-eeb545e552c7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3669 + speciesSurveyCode: MBBRACH + weightEnabled: true +- !SpeciesProtocol + id: e84dc3fc-9bbc-4224-97c4-a117a169f0eb + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3671 + speciesSurveyCode: GRYPVIT + weightEnabled: true +- !SpeciesProtocol + id: 72608c33-8ee8-4c6d-9885-22532b57359a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4180 + speciesSurveyCode: TERB + weightEnabled: true +- !SpeciesProtocol + id: dbc82106-26bc-44b8-848c-a015597c6d83 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3670 + speciesSurveyCode: MEGETRU + weightEnabled: true +- !SpeciesProtocol + id: 00a0d87d-9dd5-41d3-9040-3712982e9d88 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 226 + speciesSurveyCode: CLGASTE + weightEnabled: true +- !SpeciesProtocol + id: 7ff88d26-aca5-472c-a3e1-deb445c1ed0e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 246 + speciesSurveyCode: CALSGRA + weightEnabled: true +- !SpeciesProtocol + id: 475a780d-3dd0-4cec-a349-615c326deaee + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 247 + speciesSurveyCode: CALSZIZ + weightEnabled: true +- !SpeciesProtocol + id: ee6de210-b652-4b03-9c86-94f921f4511a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 250 + speciesSurveyCode: TURRCOM + weightEnabled: true +- !SpeciesProtocol + id: 998eb5ed-5df7-42b5-b270-2937188387ce + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 261 + speciesSurveyCode: APORPES + weightEnabled: true +- !SpeciesProtocol + id: 659013e5-a528-4e14-8051-734c8f347894 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 262 + speciesSurveyCode: APORSER + weightEnabled: true +- !SpeciesProtocol + id: d054d53d-5f87-49bc-bcb7-b0c36f5f0303 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 267 + speciesSurveyCode: CALYCHI + weightEnabled: true +- !SpeciesProtocol + id: 8639ef63-69ce-40e8-89cb-d5bb349eff7b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 268 + speciesSurveyCode: CREPFOR + weightEnabled: true +- !SpeciesProtocol + id: c59679d4-30f6-44e3-b461-e042b40b70d3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6263 + speciesSurveyCode: CAPUUNG + weightEnabled: true +- !SpeciesProtocol + id: e91b7f11-bef7-473e-91c0-d560d586c518 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7104 + speciesSurveyCode: LAMEPER + weightEnabled: true +- !SpeciesProtocol + id: d4d7ad78-1b6d-4680-a65a-154fd4982c5c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 276 + speciesSurveyCode: EUSPCAT + weightEnabled: true +- !SpeciesProtocol + id: 0576dc01-0bb4-44dd-ab5e-6e7976ddf386 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 277 + speciesSurveyCode: EUSPFUS + weightEnabled: true +- !SpeciesProtocol + id: 21e69b1f-6b75-489d-ba03-5beff7a12649 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 281 + speciesSurveyCode: GALERUG + weightEnabled: true +- !SpeciesProtocol + id: 1ef12cf9-4894-4f6f-b8ee-06921987925a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 282 + speciesSurveyCode: PHALSAB + weightEnabled: true +- !SpeciesProtocol + id: 2bbcd850-0b15-441c-8f39-6ab36f01c309 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 287 + speciesSurveyCode: RANEOLE + weightEnabled: true +- !SpeciesProtocol + id: 1835948c-66a2-48b5-b56c-481e00b81bbf + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 293 + speciesSurveyCode: OCENERI + weightEnabled: true +- !SpeciesProtocol + id: e12e1803-a374-4181-96fd-3945e3798297 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 300 + speciesSurveyCode: BUCCUND + weightEnabled: true +- !SpeciesProtocol + id: 5a50a197-7b41-4cdc-99d7-0e1c4069ccf0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 301 + speciesSurveyCode: BUCCHUM + weightEnabled: true +- !SpeciesProtocol + id: 2a0fc2bd-c4d2-48a0-9c2a-ed7c6ff2b1f5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4253 + speciesSurveyCode: COLUGRA + weightEnabled: true +- !SpeciesProtocol + id: e9095d5a-6340-4b22-b2d1-de5ecbab96eb + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4405 + speciesSurveyCode: NEPUANT + weightEnabled: true +- !SpeciesProtocol + id: 3037759d-878e-4ac0-a06c-2cbfa4c80dde + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 305 + speciesSurveyCode: NASSRET + weightEnabled: true +- !SpeciesProtocol + id: bea4972d-50ad-4563-bd42-3bd2c0b60170 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 317 + speciesSurveyCode: PHILAPE + weightEnabled: true +- !SpeciesProtocol + id: 4382f78b-a28d-4fa8-aa55-af116cdd5047 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 318 + speciesSurveyCode: SCAHLIG + weightEnabled: true +- !SpeciesProtocol + id: b64f8c5d-2b2a-499d-95b4-30ef2ee35f45 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7098 + speciesSurveyCode: GATORUB + weightEnabled: true +- !SpeciesProtocol + id: 7bd9fb57-e14a-44f8-b0f2-04bc3f93ef7c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7486 + speciesSurveyCode: BERTPLU + weightEnabled: true +- !SpeciesProtocol + id: 7596edc7-e788-4f3a-822e-3071711abb59 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4209 + speciesSurveyCode: PLBRMEM + weightEnabled: true +- !SpeciesProtocol + id: 6bf23aaf-f9ef-4e66-8f3c-5a4c594f3c06 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3200 + speciesSurveyCode: APLY + weightEnabled: true +- !SpeciesProtocol + id: ea0b62ec-a8ac-4193-b196-c4f22ccea71f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 326 + speciesSurveyCode: DORSPSD + weightEnabled: true +- !SpeciesProtocol + id: f340c1a9-81e9-415d-8350-2a4d5c223364 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2418 + speciesSurveyCode: JORUTOM + weightEnabled: true +- !SpeciesProtocol + id: 1b1e6316-c254-4f97-96dd-8e90dcbbdcf4 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 11779 + speciesSurveyCode: ROSARUB + weightEnabled: true +- !SpeciesProtocol + id: 15d9660c-6bc4-44d2-bf67-8d97bf36cf9b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7482 + speciesSurveyCode: KALORAM + weightEnabled: true +- !SpeciesProtocol + id: 812dcbcb-8453-40d7-abd4-ea3c864e4e6b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6138 + speciesSurveyCode: DENRFRO + weightEnabled: true +- !SpeciesProtocol + id: e0aafabc-6716-4a73-8994-0b0a717959e7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 331 + speciesSurveyCode: ARMILOV + weightEnabled: true +- !SpeciesProtocol + id: 70812dfa-d90a-446c-8f9a-fb20942aa1aa + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7481 + speciesSurveyCode: AOLL + weightEnabled: true +- !SpeciesProtocol + id: 126e779a-91b4-41bb-a456-84276b5e87f3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 336 + speciesSurveyCode: CLBIVAL + weightEnabled: true +- !SpeciesProtocol + id: 820527a9-29d4-4fd9-bb39-a6f8237e235d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 342 + speciesSurveyCode: GLYCGLY + weightEnabled: true +- !SpeciesProtocol + id: 5044499f-251b-432c-ac09-8cf4fc0ea69b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 353 + speciesSurveyCode: ATRIPEC + weightEnabled: true +- !SpeciesProtocol + id: f0229fc7-eff9-4c62-8c9d-a1734eaa24d2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 355 + speciesSurveyCode: PTERHIR + weightEnabled: true +- !SpeciesProtocol + id: 5140514f-eec6-47da-ad10-11082f679626 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 365 + speciesSurveyCode: AEQUOPE + weightEnabled: true +- !SpeciesProtocol + id: d95ec0fd-c94a-4625-8cc7-b5d6d554558b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6139 + speciesSurveyCode: PALLTIG + weightEnabled: true +- !SpeciesProtocol + id: a744ac7a-774a-4b91-9fe5-ec23f3e81228 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3599 + speciesSurveyCode: PSMUCLA + weightEnabled: true +- !SpeciesProtocol + id: 200f25c0-9e4c-4bbe-a45e-d41f7ba5069a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4297 + speciesSurveyCode: PSMUPES + weightEnabled: true +- !SpeciesProtocol + id: fa5322a7-416d-45f2-acb3-a716b1ef2dd7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3608 + speciesSurveyCode: FMANOMI + weightEnabled: true +- !SpeciesProtocol + id: 677d0e88-f183-452e-a60b-cc73dfe96d61 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3614 + speciesSurveyCode: NEOPCOC + weightEnabled: true +- !SpeciesProtocol + id: 1b5b4273-73da-4a52-8f06-a86a42f7d99e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4632 + speciesSurveyCode: ASTASUL + weightEnabled: true +- !SpeciesProtocol + id: 0e692122-b933-4463-ae69-bc9d6240fa89 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 380 + speciesSurveyCode: ACANECH + weightEnabled: true +- !SpeciesProtocol + id: 48213df4-9dc5-40fd-8e34-6a3675083a0e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 387 + speciesSurveyCode: LAEVCRA + weightEnabled: true +- !SpeciesProtocol + id: 4ac69955-1c65-4b48-83ad-6f9e596ca42c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 394 + speciesSurveyCode: SPISELL + weightEnabled: true +- !SpeciesProtocol + id: 94d7c039-f2b7-4125-934f-1d2ffd71927e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3643 + speciesSurveyCode: ARCOBAL + weightEnabled: true +- !SpeciesProtocol + id: 21e7af73-0637-4f0e-9058-a03c51b7e3be + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3646 + speciesSurveyCode: ARCTISL + weightEnabled: true +- !SpeciesProtocol + id: 844d5548-53a9-43f8-b469-d11da97f2e50 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 427 + speciesSurveyCode: GLOUHUM + weightEnabled: true +- !SpeciesProtocol + id: df9b9030-a591-4ac0-9e84-7c45e6f6a71c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3015 + speciesSurveyCode: TIMCOVA + weightEnabled: true +- !SpeciesProtocol + id: 77fb3fa3-7a6f-4b1c-84fc-aa6f0b1a0b72 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 440 + speciesSurveyCode: CALLCHI + weightEnabled: true +- !SpeciesProtocol + id: b8642163-14ff-4f0f-9f45-2a22d1121364 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 431 + speciesSurveyCode: VENUCAS + weightEnabled: true +- !SpeciesProtocol + id: 976bd3a1-62d3-4562-9be9-c255ea5e32af + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6674 + speciesSurveyCode: XYLODOR + weightEnabled: true +- !SpeciesProtocol + id: 28c2b344-36c9-4141-9410-e4b12b1d21b1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 460 + speciesSurveyCode: CLSCAPH + weightEnabled: true +- !SpeciesProtocol + id: dfb31d04-5bf2-4e90-8925-d6446a75ff03 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4397 + speciesSurveyCode: ANTA + weightEnabled: true +- !SpeciesProtocol + id: 778e111b-6404-441d-842c-91a4f447699c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 464 + speciesSurveyCode: CLCEPHA + weightEnabled: true +- !SpeciesProtocol + id: f3475bc0-11a0-4c8a-bce0-1806f6190b90 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 471 + speciesSurveyCode: ROSSMAC + weightEnabled: true +- !SpeciesProtocol + id: 2288ba6b-ffb3-4a61-81cf-a704b4956da6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 470 + speciesSurveyCode: FMSEPIO + weightEnabled: true +- !SpeciesProtocol + id: 4a321c1d-26ba-4edc-ab01-c2ebb7f822f6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 484 + speciesSurveyCode: SEPENEG + weightEnabled: true +- !SpeciesProtocol + id: ddecea1d-c0f3-40c0-8873-82e25c89835c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 486 + speciesSurveyCode: SEPEOWE + weightEnabled: true +- !SpeciesProtocol + id: 49a3ab44-9cfc-42bf-9863-a960967057e3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 475 + speciesSurveyCode: RONDMIN + weightEnabled: true +- !SpeciesProtocol + id: ab9f9d52-535c-46c2-af81-5d592afa17dc + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 478 + speciesSurveyCode: SEPOATL + weightEnabled: true +- !SpeciesProtocol + id: 51a31f61-dc7f-4fcd-b7d9-046f2b424219 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7674 + speciesSurveyCode: SEPOPFE + weightEnabled: true +- !SpeciesProtocol + id: 8918a7b4-5e7c-4601-8b6b-65399304eaa1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 480 + speciesSurveyCode: SEPOLIG + weightEnabled: true +- !SpeciesProtocol + id: ac483de2-83a1-4452-8010-a8dccfa3d895 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7182 + speciesSurveyCode: SEPOTRI + weightEnabled: true +- !SpeciesProtocol + id: 6ee055e3-6d9c-47d4-8026-072a52947c97 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 528 + speciesSurveyCode: CLPYCNO + weightEnabled: true +- !SpeciesProtocol + id: 909565d8-80bc-485a-9022-844f3e4a868e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4665 + speciesSurveyCode: PYCNLIT + weightEnabled: true +- !SpeciesProtocol + id: baf3392f-7f10-4a2e-80ce-a16a303f2842 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 712 + speciesSurveyCode: SCCIRIP + weightEnabled: true +- !SpeciesProtocol + id: cdfd0890-fd2a-4022-bf3e-dc3e21d8b4f0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 715 + speciesSurveyCode: SCALSCA + weightEnabled: true +- !SpeciesProtocol + id: 75f768e2-271c-406a-88bc-090289258791 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6839 + speciesSurveyCode: ORMYSID + weightEnabled: true +- !SpeciesProtocol + id: 6b2f2a8b-9d80-4f1b-91bf-c1cf8dd0f947 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 829 + speciesSurveyCode: ORSTOMA + weightEnabled: true +- !SpeciesProtocol + id: f77bdae5-3f9c-4d6b-a857-caf5283fcb02 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 833 + speciesSurveyCode: RISSDES + weightEnabled: true +- !SpeciesProtocol + id: 8b62f3f1-0b2c-4327-a19a-3cea29efabe9 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 846 + speciesSurveyCode: SODENDR + weightEnabled: true +- !SpeciesProtocol + id: af9b9707-3628-4233-9678-d52481b4a04a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 855 + speciesSurveyCode: PAPELON + weightEnabled: true +- !SpeciesProtocol + id: c19ff412-5590-4b01-9ab5-a08ad7488c9f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 848 + speciesSurveyCode: ARISFOL + weightEnabled: true +- !SpeciesProtocol + id: 7c01089f-035d-44dc-a416-aee55e393cec + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4613 + speciesSurveyCode: ARIAEDW + weightEnabled: true +- !SpeciesProtocol + id: 7e43c401-b395-42de-9d43-ecc47007474c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 858 + speciesSurveyCode: SOLOMEM + weightEnabled: true +- !SpeciesProtocol + id: 8ae9b3ad-5672-4ae8-9493-c0b1ec6457c1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 862 + speciesSurveyCode: SRGIROB + weightEnabled: true +- !SpeciesProtocol + id: a97cc910-8da7-453d-9f07-e06f707e49b0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 864 + speciesSurveyCode: IOCARID + weightEnabled: true +- !SpeciesProtocol + id: 31fa415e-0e59-4e60-8c85-41f8ae64d1f0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 867 + speciesSurveyCode: PASIMUL + weightEnabled: true +- !SpeciesProtocol + id: ae9335aa-6908-4fbf-8cdc-00397b41fb3d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 868 + speciesSurveyCode: PASISIV + weightEnabled: true +- !SpeciesProtocol + id: 82da36c8-80d9-4eb6-8487-4086967601d4 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7329 + speciesSurveyCode: PASITAR + weightEnabled: true +- !SpeciesProtocol + id: 36c5e92f-9973-4f31-83ac-80df4a1e9fc9 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 872 + speciesSurveyCode: ACAPPEL + weightEnabled: true +- !SpeciesProtocol + id: f62d6812-d6fd-4aa4-9daa-be12a9f91b46 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7328 + speciesSurveyCode: EPHYFIG + weightEnabled: true +- !SpeciesProtocol + id: 2f2ed4d3-92f5-435e-b7ed-473091385ae1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6807 + speciesSurveyCode: SYSTDEB + weightEnabled: true +- !SpeciesProtocol + id: 17441118-c56f-46b0-9703-8fd62329a97c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 920 + speciesSurveyCode: PALOSER + weightEnabled: true +- !SpeciesProtocol + id: 46d7fa82-4f27-4289-bdd0-96132232e4c6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 907 + speciesSurveyCode: ALPHGLA + weightEnabled: true +- !SpeciesProtocol + id: ab09c0c9-c226-4e53-ab52-ac8d81b64c83 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4675 + speciesSurveyCode: SPITLIL + weightEnabled: true +- !SpeciesProtocol + id: e9e3187d-b144-4e2c-90d8-fd29f815de5b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 911 + speciesSurveyCode: PROC + weightEnabled: true +- !SpeciesProtocol + id: 7c74f70c-e300-40c6-a58b-dc8658e1ac07 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 886 + speciesSurveyCode: CHLOCRA + weightEnabled: true +- !SpeciesProtocol + id: ff4464db-3ae3-41a6-9267-f76eb8877f1d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 878 + speciesSurveyCode: PANSMON + weightEnabled: true +- !SpeciesProtocol + id: 728d3198-8c5a-4a2f-ae5c-31bc8a8b39bd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3195 + speciesSurveyCode: DICHBON + weightEnabled: true +- !SpeciesProtocol + id: 96f461d3-aae3-4f0d-bac2-c6fb43f8af1f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7201 + speciesSurveyCode: ATLAPRO + weightEnabled: true +- !SpeciesProtocol + id: 7e435fd8-bfc4-4382-9c2d-6ce75dfd3dfa + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 883 + speciesSurveyCode: PLEKHET + weightEnabled: true +- !SpeciesProtocol + id: 76bb8e67-b7ee-4266-8569-809bf3b33c50 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 884 + speciesSurveyCode: PLEKMAR + weightEnabled: true +- !SpeciesProtocol + id: 15b8dd42-9647-433e-88c3-93877b942ff9 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 931 + speciesSurveyCode: CRAGCRA + weightEnabled: true +- !SpeciesProtocol + id: 344c8436-0ed4-43b8-9f27-3d45cfdf9888 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 932 + speciesSurveyCode: CRAGALM + weightEnabled: true +- !SpeciesProtocol + id: af4cd33d-1f54-4499-89c1-9af0a69c6da6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 934 + speciesSurveyCode: PONPSPI + weightEnabled: true +- !SpeciesProtocol + id: fdb419b1-95a2-4453-aa4f-b41d5e0df536 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 941 + speciesSurveyCode: PHICECH + weightEnabled: true +- !SpeciesProtocol + id: aa108bd5-7648-49fb-a8f5-4fd84a947cc8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 953 + speciesSurveyCode: POLCTYP + weightEnabled: true +- !SpeciesProtocol + id: c658e483-7508-4d2e-8461-3a62f4c4eb88 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 962 + speciesSurveyCode: SCYLARC + weightEnabled: true +- !SpeciesProtocol + id: 19b2abce-c9ac-468b-bbae-ad394219061b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 966 + speciesSurveyCode: CALRMAC + weightEnabled: true +- !SpeciesProtocol + id: 1d37567f-ba55-442e-9061-f05598b0abd9 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 971 + speciesSurveyCode: JAXENOC + weightEnabled: true +- !SpeciesProtocol + id: 8583da85-0c91-41e5-a367-d189aad8e95c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7274 + speciesSurveyCode: UFGALAT + weightEnabled: true +- !SpeciesProtocol + id: 6a37bb89-784c-4661-b651-65321408d369 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1009 + speciesSurveyCode: GALA + weightEnabled: true +- !SpeciesProtocol + id: 06d305e8-e6c0-4c8c-953e-4f5cc63913b7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1015 + speciesSurveyCode: MUNI + weightEnabled: true +- !SpeciesProtocol + id: ae681647-6a86-4182-8700-28dad56d1c0b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1023 + speciesSurveyCode: PISILON + weightEnabled: true +- !SpeciesProtocol + id: e1421b4f-4737-479f-8a66-7bb187ba5f53 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2167 + speciesSurveyCode: UFPAGUR + weightEnabled: true +- !SpeciesProtocol + id: aedc95e5-1481-4040-8191-059e9a4319f6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 987 + speciesSurveyCode: DIOGPUG + weightEnabled: true +- !SpeciesProtocol + id: de3d9348-63be-4702-8c24-2ecf64526778 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7330 + speciesSurveyCode: PRPGPIL + weightEnabled: true +- !SpeciesProtocol + id: e526f085-b0cc-4e84-a932-b3de8f944978 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1005 + speciesSurveyCode: ANAPHYN + weightEnabled: true +- !SpeciesProtocol + id: 54277186-2882-41d0-8305-c1d1d2324d86 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1007 + speciesSurveyCode: ANAPLAE + weightEnabled: true +- !SpeciesProtocol + id: 16d6882a-52e5-4ba1-86ef-d256a1aa33e1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 998 + speciesSurveyCode: PAGUALA + weightEnabled: true +- !SpeciesProtocol + id: 4001a11b-f999-4411-8691-436a5a23db05 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 995 + speciesSurveyCode: PAGUBER + weightEnabled: true +- !SpeciesProtocol + id: 9fe0cbb0-ded5-43b1-8d87-f4a42072b29c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7270 + speciesSurveyCode: PAGUCAR + weightEnabled: true +- !SpeciesProtocol + id: e8676fb9-b41f-423b-9e52-6a7b9d5176d7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 997 + speciesSurveyCode: PAGUCUA + weightEnabled: true +- !SpeciesProtocol + id: 971b95c7-dea6-4202-9cbd-07b28f73c783 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 999 + speciesSurveyCode: PAGUEXC + weightEnabled: true +- !SpeciesProtocol + id: fa1468c5-e88d-4fe1-85f1-019a18935bba + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1000 + speciesSurveyCode: PAGUFOR + weightEnabled: true +- !SpeciesProtocol + id: e521df38-87bb-4d1f-b7cb-9673f641c26f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 994 + speciesSurveyCode: PAGUPRI + weightEnabled: true +- !SpeciesProtocol + id: ddb62b81-bc87-4d26-af74-a8e1b0bea1f8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1026 + speciesSurveyCode: IOBRACY + weightEnabled: true +- !SpeciesProtocol + id: 4a5faccd-ddff-4788-85d6-7d74ab0254c3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1114 + speciesSurveyCode: HYASCOA + weightEnabled: true +- !SpeciesProtocol + id: 573ec09d-29e6-4486-8017-586dea5c71a8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1119 + speciesSurveyCode: EURYASP + weightEnabled: true +- !SpeciesProtocol + id: cc63b687-35e3-4520-b264-b2e50df5a7f4 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1122 + speciesSurveyCode: ERGACLO + weightEnabled: true +- !SpeciesProtocol + id: 03713c08-88e1-4725-936c-1b608f57c87b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1128 + speciesSurveyCode: INACDOR + weightEnabled: true +- !SpeciesProtocol + id: f05daab5-710f-476f-abde-aba23748d34d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1126 + speciesSurveyCode: INACLEP + weightEnabled: true +- !SpeciesProtocol + id: 53242a02-cf94-43ba-8f12-c8211c518c42 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1131 + speciesSurveyCode: MACR + weightEnabled: true +- !SpeciesProtocol + id: 421cbd74-04c1-40a3-8243-ced73bfc036f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1135 + speciesSurveyCode: MACRTEN + weightEnabled: true +- !SpeciesProtocol + id: f6cc3f25-5a47-4b5a-8133-464e3cb73ed3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1038 + speciesSurveyCode: EBALTUB + weightEnabled: true +- !SpeciesProtocol + id: aaa48d2a-5290-4149-b001-42b5bd5fbe89 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4435 + speciesSurveyCode: EBALGRA + weightEnabled: true +- !SpeciesProtocol + id: 43b07f9c-929e-4369-a75e-4af2e143fd12 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1044 + speciesSurveyCode: CORSCAS + weightEnabled: true +- !SpeciesProtocol + id: cb99968c-594d-4895-8f65-1d1a4d5f4f12 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1050 + speciesSurveyCode: ATELROT + weightEnabled: true +- !SpeciesProtocol + id: 547a373a-bc00-4bc0-b937-a2b896fcc607 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1051 + speciesSurveyCode: ATELUND + weightEnabled: true +- !SpeciesProtocol + id: 5f76fac8-a7ec-4573-87cf-abb7afdb54e5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1047 + speciesSurveyCode: THIASCU + weightEnabled: true +- !SpeciesProtocol + id: b53b9fcd-8df1-4d05-80fd-5a577bf1514a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1062 + speciesSurveyCode: PORTLAT + weightEnabled: true +- !SpeciesProtocol + id: d68a745e-a0dd-4664-b31e-729e71ef5e46 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1071 + speciesSurveyCode: LIOCARC + weightEnabled: true +- !SpeciesProtocol + id: d5e802d4-f896-4be7-a6d8-6380edceedb7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1068 + speciesSurveyCode: LIOCPUS + weightEnabled: true +- !SpeciesProtocol + id: ec4eaa54-4c27-4e01-a36e-c553ed0aa24d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1069 + speciesSurveyCode: LIOCDEP + weightEnabled: true +- !SpeciesProtocol + id: 17bebb52-4648-426d-9d59-03a1b00f44fd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1070 + speciesSurveyCode: LIOCHOL + weightEnabled: true +- !SpeciesProtocol + id: bfca35f3-1aa9-4b78-ac99-ced9ff20ba31 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1074 + speciesSurveyCode: LIOCMAR + weightEnabled: true +- !SpeciesProtocol + id: d1d5ed71-b5b1-4350-96ef-db484262c8f3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1075 + speciesSurveyCode: LIOCVER + weightEnabled: true +- !SpeciesProtocol + id: 5ec5ff84-0dcf-4cb6-acbe-497390ecdeee + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1077 + speciesSurveyCode: POLBHEN + weightEnabled: true +- !SpeciesProtocol + id: 815aca9b-78e4-4e15-9876-39e5fa8226da + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1066 + speciesSurveyCode: MCPITUB + weightEnabled: true +- !SpeciesProtocol + id: 5c542dae-e537-4f8f-9b14-2e27b154e8a8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1076 + speciesSurveyCode: NECOPUB + weightEnabled: true +- !SpeciesProtocol + id: dbb31a95-b56d-4a17-96b4-b2d0efda6fcc + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4427 + speciesSurveyCode: BATYLON + weightEnabled: true +- !SpeciesProtocol + id: a3a02471-f76d-4326-bc0d-eab0cdb53f56 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1064 + speciesSurveyCode: BATYMAR + weightEnabled: true +- !SpeciesProtocol + id: bdd37eeb-558a-4fd4-9bf4-c3c3c2549db1 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7199 + speciesSurveyCode: DSTOMAL + weightEnabled: true +- !SpeciesProtocol + id: 2dd47d97-214f-4fd1-b3c6-956c5d1d9127 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1094 + speciesSurveyCode: MONDCOU + weightEnabled: true +- !SpeciesProtocol + id: 85a3a619-f8a6-430e-992c-13cb0be581bc + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2208 + speciesSurveyCode: XANTPIL + weightEnabled: true +- !SpeciesProtocol + id: 94b8fa8a-4b39-4ac8-9231-a4a7fff7ff07 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1090 + speciesSurveyCode: PILUHIR + weightEnabled: true +- !SpeciesProtocol + id: 77e69b6d-9e34-4796-bb08-475e3124e1ad + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1103 + speciesSurveyCode: GONERHO + weightEnabled: true +- !SpeciesProtocol + id: d27ca8fa-eb98-4494-9a14-f6898f16b708 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1143 + speciesSurveyCode: CLCRINO + weightEnabled: true +- !SpeciesProtocol + id: ba11e473-9f08-4e86-b65d-ebc1ff526525 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4211 + speciesSurveyCode: LPTMCEL + weightEnabled: true +- !SpeciesProtocol + id: 99fdb147-b9c0-4efa-b4e8-b119a3a9c240 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7390 + speciesSurveyCode: ANTDPET + weightEnabled: true +- !SpeciesProtocol + id: 1f3ad7e6-95ff-4c47-8fe7-1488da2be451 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1144 + speciesSurveyCode: CLASTER + weightEnabled: true +- !SpeciesProtocol + id: e6a95b7d-bfe7-4eab-b66b-f8d1c043609a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3009 + speciesSurveyCode: LUIDCIL + weightEnabled: true +- !SpeciesProtocol + id: 40c89afb-8fa7-4aca-8685-219d9a2253ac + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4414 + speciesSurveyCode: LUIDSAR + weightEnabled: true +- !SpeciesProtocol + id: 04fa7b80-4f4a-43f3-a39f-874b2952afac + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1150 + speciesSurveyCode: ASTPIRR + weightEnabled: true +- !SpeciesProtocol + id: 1ef7115b-92c6-424c-99bf-691cf11d077e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6809 + speciesSurveyCode: PLUTBIF + weightEnabled: true +- !SpeciesProtocol + id: d3030bb0-d6ec-4c98-875b-6b8d27eb8628 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12054 + speciesSurveyCode: FMBENTO + weightEnabled: true +- !SpeciesProtocol + id: 968b9f78-b931-4790-9c8f-7995b2460811 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12046 + speciesSurveyCode: ODONMED + weightEnabled: true +- !SpeciesProtocol + id: 1eebc88a-aa0d-40d6-a547-f22cd85622b0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1145 + speciesSurveyCode: ANSEPLA + weightEnabled: true +- !SpeciesProtocol + id: 651ecf57-6205-473b-9ac1-3b3375379f94 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3026 + speciesSurveyCode: PORAPUL + weightEnabled: true +- !SpeciesProtocol + id: 65caf6a2-6b56-4798-bf0f-52354b1adbdc + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7193 + speciesSurveyCode: NYMFARE + weightEnabled: true +- !SpeciesProtocol + id: eb3250f0-3ad4-4286-bcbc-ef640c4ffac6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12058 + speciesSurveyCode: PDASGRA + weightEnabled: true +- !SpeciesProtocol + id: 601cd9a5-7384-4a13-96f7-34a64f6899d2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3685 + speciesSurveyCode: PELSPLA + weightEnabled: true +- !SpeciesProtocol + id: 8ee206e4-cea1-43a6-b7a7-05cc85724bf3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2404 + speciesSurveyCode: CROSPAP + weightEnabled: true +- !SpeciesProtocol + id: eed51b46-d05a-4442-997b-a204d87a121a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7287 + speciesSurveyCode: PTASPUL + weightEnabled: true +- !SpeciesProtocol + id: 6adc2530-d990-41c1-8c9d-ccef3eee7dae + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3577 + speciesSurveyCode: HENR + weightEnabled: true +- !SpeciesProtocol + id: fefffa30-cf34-45eb-9bab-b4d226fc3947 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1148 + speciesSurveyCode: ASTIRUB + weightEnabled: true +- !SpeciesProtocol + id: 7a01cf28-560a-4068-ad77-f55f9e6b0ca2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1146 + speciesSurveyCode: MARHGLA + weightEnabled: true +- !SpeciesProtocol + id: 7cf85e22-8fc7-475f-a89c-6dd02b635d92 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4660 + speciesSurveyCode: STIHROS + weightEnabled: true +- !SpeciesProtocol + id: 1403e0a1-271d-4cdc-a0c5-77165f713ebf + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12043 + speciesSurveyCode: ZOROFUL + weightEnabled: true +- !SpeciesProtocol + id: d9590c0d-47bc-412f-8c44-0c2524962efd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7197 + speciesSurveyCode: HYMNCOR + weightEnabled: true +- !SpeciesProtocol + id: 7f036e05-208a-4092-a196-6fe11d5ee159 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1151 + speciesSurveyCode: CLOPHIU + weightEnabled: true +- !SpeciesProtocol + id: 2e7f6e33-8bb0-4659-8b2d-bfc85eb8f21f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6242 + speciesSurveyCode: ASTYLOV + weightEnabled: true +- !SpeciesProtocol + id: 94c1665f-905a-4c1c-82dc-88a0d2239c57 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1158 + speciesSurveyCode: OPHOFRA + weightEnabled: true +- !SpeciesProtocol + id: d14416d4-f76f-45be-811d-18cc79d68b8f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3550 + speciesSurveyCode: OPHOLUE + weightEnabled: true +- !SpeciesProtocol + id: 7f1f12bf-0fe6-4fbb-aad2-ecb9f3f6823f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4398 + speciesSurveyCode: OPHANIG + weightEnabled: true +- !SpeciesProtocol + id: bdc0c80a-6f24-4c7d-85d4-faf913509171 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7675 + speciesSurveyCode: OFIABRE + weightEnabled: true +- !SpeciesProtocol + id: 57618b4e-22f7-4d80-80d6-027f85cb8117 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1161 + speciesSurveyCode: ACROBRA + weightEnabled: true +- !SpeciesProtocol + id: 53d7e1e3-6ba5-4643-8f55-819360825c3b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4743 + speciesSurveyCode: OPOCAFF + weightEnabled: true +- !SpeciesProtocol + id: 55637b53-4303-4853-9a9e-8c0f36fb6b74 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1156 + speciesSurveyCode: OPHUALB + weightEnabled: true +- !SpeciesProtocol + id: 8a2ddb13-583a-41ea-8f7e-854e10d9db57 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1155 + speciesSurveyCode: OPHUOPH + weightEnabled: true +- !SpeciesProtocol + id: e9d54ce3-b838-4e98-a370-69e0ba16f1b5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 10421 + speciesSurveyCode: CLECHIN + weightEnabled: true +- !SpeciesProtocol + id: 604524ed-d469-4b92-a705-f3711d235194 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6812 + speciesSurveyCode: CIDACID + weightEnabled: true +- !SpeciesProtocol + id: 74b89b6b-5478-47f9-9edb-5572c7b4368c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7334 + speciesSurveyCode: ORECHTU + weightEnabled: true +- !SpeciesProtocol + id: 594b7b8a-7f16-4c9f-b43d-41b78c90aff7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1173 + speciesSurveyCode: SPHAGRA + weightEnabled: true +- !SpeciesProtocol + id: 10571280-89f5-43fa-bab1-8334eb2daa87 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4235 + speciesSurveyCode: GRACACU + weightEnabled: true +- !SpeciesProtocol + id: 2a3dc83e-47c5-48d4-a99e-28547101ded6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1168 + speciesSurveyCode: ECHNESC + weightEnabled: true +- !SpeciesProtocol + id: c2015d42-d84e-4d8a-9cf6-b195a55b8df6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1169 + speciesSurveyCode: ECHNMEL + weightEnabled: true +- !SpeciesProtocol + id: 73ce4b58-2401-4040-9cc0-10111d58ab36 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6130 + speciesSurveyCode: ECHNELE + weightEnabled: true +- !SpeciesProtocol + id: cccf58c5-50df-4f4b-9138-64236e6b5bc5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1172 + speciesSurveyCode: PSAMMIL + weightEnabled: true +- !SpeciesProtocol + id: da6ea910-d521-4cd5-814c-8a6058492055 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1164 + speciesSurveyCode: ECHCCOR + weightEnabled: true +- !SpeciesProtocol + id: a751b54e-cec7-492a-b75d-4300968459a6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7283 + speciesSurveyCode: ECHCPEN + weightEnabled: true +- !SpeciesProtocol + id: a1ab8f21-36b2-42eb-8c03-695fbc93a08f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2408 + speciesSurveyCode: SPATPUR + weightEnabled: true +- !SpeciesProtocol + id: e7356555-25cf-42c6-827f-7f1536120a97 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4388 + speciesSurveyCode: BRISLYR + weightEnabled: true +- !SpeciesProtocol + id: 9ec31fda-592b-4b5b-ae3b-6d287e62e2f6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1174 + speciesSurveyCode: CLHOLOT + weightEnabled: true +- !SpeciesProtocol + id: a4861440-bd23-4b6e-96f1-6f03a73302e6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12032 + speciesSurveyCode: LAEGVIO + weightEnabled: true +- !SpeciesProtocol + id: 5f83fb45-4b3f-445b-a467-b63858814435 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12057 + speciesSurveyCode: MESAINT + weightEnabled: true +- !SpeciesProtocol + id: 4a45808f-83b4-497c-a652-68a78d688def + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 11323 + speciesSurveyCode: HLTPFOR + weightEnabled: true +- !SpeciesProtocol + id: 657eba58-62a1-47ea-ac95-9a0d24152c85 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2203 + speciesSurveyCode: LPTOELO + weightEnabled: true +- !SpeciesProtocol + id: 5bdcc732-93d7-4160-8491-41695488460d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7673 + speciesSurveyCode: PSOLPHA + weightEnabled: true +- !SpeciesProtocol + id: ce2c9b51-f893-4f9c-a7d3-ed04e1fc9290 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1177 + speciesSurveyCode: PRSTREG + weightEnabled: true +- !SpeciesProtocol + id: 46158863-6fce-4a07-af56-b7c822a400cd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7273 + speciesSurveyCode: PRSTTRE + weightEnabled: true +- !SpeciesProtocol + id: 4f935681-5a00-46b8-a6cc-ab451d6b8f5f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3023 + speciesSurveyCode: LEPSINH + weightEnabled: true +- !SpeciesProtocol + id: b13bdacf-ffdb-4e5f-8da2-189660675c3f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1182 + speciesSurveyCode: CLASCID + weightEnabled: true +- !SpeciesProtocol + id: 935c3ee3-ac79-449c-ae62-ce4b4243d79d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3943 + speciesSurveyCode: ASCD + weightEnabled: true +comment: Protocole pour les tests 2013 avec Jean Jacques Rivoalen +gearUseFeaturePmfmId: +- 131 +- 828 +- 884 +- 965 +lengthClassesPmfmId: +- 306 +- 622 +- 307 +- 302 +- 299 +- 1394 +- 1417 +- 1425 +- 1426 +- 1427 +- 283 +- 284 +- 285 +- 294 +- 295 +- 300 +- 301 +- 304 +- 318 +- 319 +- 322 +- 323 +- 661 +- 662 +species: +- !SpeciesProtocol + id: 877bacab-745a-4547-a564-6314ab5e023b + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 495 + speciesSurveyCode: ABRAVER + weightEnabled: true +- !SpeciesProtocol + id: ddffa4c9-cbb5-447f-a829-e2ac0cfea0f5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1732 + speciesSurveyCode: ACANPAL + weightEnabled: true +- !SpeciesProtocol + id: 0de3f5c9-0ca9-4a7c-84aa-323d9eaa7f7f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 872 + speciesSurveyCode: ACANPEL + weightEnabled: true +- !SpeciesProtocol + id: 9febe2fb-dfe4-4fb5-92e1-fe7b1fed10ae + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4284 + speciesSurveyCode: ACANPUR + weightEnabled: true +- !SpeciesProtocol + id: d8d629b7-014d-4360-b4a3-eeafdc46c2a2 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1938 + speciesSurveyCode: AGONCAT + weightEnabled: true +- !SpeciesProtocol + id: 8a65a432-6238-4db2-b835-15fcfb3c2040 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1345 + speciesSurveyCode: ALEPBAI + weightEnabled: true +- !SpeciesProtocol + id: 5f64bd55-561d-4ba3-880a-2b155e32c844 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1344 + speciesSurveyCode: ALEPROS + weightEnabled: true +- !SpeciesProtocol + id: ac835e02-ca0b-4874-adb4-46717fa014ce + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 491 + speciesSurveyCode: ALLOTEZ + weightEnabled: true +- !SpeciesProtocol + id: ad3570c6-c0f0-42c1-b4ea-99b808c8287d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1358 + speciesSurveyCode: ALOSALO + weightEnabled: true +- !SpeciesProtocol + id: 343338d6-cea6-4c88-a774-e7af0d2c302c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1359 + speciesSurveyCode: ALOSFAL + weightEnabled: true +- !SpeciesProtocol + id: de220496-40f9-426d-acd3-86b21c193240 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1750 + speciesSurveyCode: AMMOMAR + weightEnabled: true +- !SpeciesProtocol + id: 477de625-4ff9-4d92-8349-99b84ad622fe + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1749 + speciesSurveyCode: AMMOTOB + weightEnabled: true +- !SpeciesProtocol + id: 99ecc146-18f4-4706-af13-72e03022db65 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1830 + speciesSurveyCode: ANARLUP + weightEnabled: true +- !SpeciesProtocol + id: 3c453e69-1145-4420-83da-bd38a2306dcd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1452 + speciesSurveyCode: ANGUANG + weightEnabled: true +- !SpeciesProtocol + id: a8de7599-b4e7-4356-9a49-aa2c7ed171bc + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2590 + speciesSurveyCode: ANOPCOR + weightEnabled: true +- !SpeciesProtocol + id: 736c3e30-c161-481e-9280-348e9304d318 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1766 + speciesSurveyCode: APHACAR + weightEnabled: true +- !SpeciesProtocol + id: 45f5f2ef-d5fb-469e-8bee-42d84cf2356a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1795 + speciesSurveyCode: APHIMIN + weightEnabled: true +- !SpeciesProtocol + id: 6481d6cd-e1a0-4116-956b-3e1e1f2398ac + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1395 + speciesSurveyCode: ARGESIL + weightEnabled: true +- !SpeciesProtocol + id: 75de6e2d-9ad6-48b3-9033-31fd4e152c6e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1394 + speciesSurveyCode: ARGESPH + weightEnabled: true +- !SpeciesProtocol + id: 993023a8-9c33-48f2-b528-a69839553f0b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1377 + speciesSurveyCode: ARGYACU + weightEnabled: true +- !SpeciesProtocol + id: 6063df73-978e-4e99-ac80-10a34c6aa9b8 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1375 + speciesSurveyCode: ARGYHEM + weightEnabled: true +- !SpeciesProtocol + id: cd81c7b3-d0a7-4353-a94b-8e60df6b012d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1376 + speciesSurveyCode: ARGYOLF + weightEnabled: true +- !SpeciesProtocol + id: 4787bde0-f556-4d2d-90ee-86f81585f70f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1680 + speciesSurveyCode: ARGYOPZ + weightEnabled: true +- !SpeciesProtocol + id: b138316d-9d0d-4caf-93cc-d7ebfd88a33d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1681 + speciesSurveyCode: ARGYREG + weightEnabled: true +- !SpeciesProtocol + id: 78117090-32a9-4074-96eb-157bdf124873 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1972 + speciesSurveyCode: ARNOIMP + weightEnabled: true +- !SpeciesProtocol + id: 9a22c66f-8227-438c-919a-425f70580112 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1971 + speciesSurveyCode: ARNOLAT + weightEnabled: true +- !SpeciesProtocol + id: 40c84a30-39cb-46c0-bcd5-246fe5357c76 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1974 + speciesSurveyCode: ARNOTHO + weightEnabled: true +- !SpeciesProtocol + id: 23fc5383-dedb-46dd-9e5d-71bd174300c4 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1912 + speciesSurveyCode: ASPICUC + weightEnabled: true +- !SpeciesProtocol + id: faecc70a-20a9-4cee-a928-24eaa45b3be0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1913 + speciesSurveyCode: ASPIOBS + weightEnabled: true +- !SpeciesProtocol + id: c2e937e3-0d29-4bc9-8df3-a328e0ad8253 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1890 + speciesSurveyCode: ATHEBOY + weightEnabled: true +- !SpeciesProtocol + id: 14db658f-1f4a-43b5-809b-a8cb41a336cc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1891 + speciesSurveyCode: ATHEPRE + weightEnabled: true +- !SpeciesProtocol + id: 61173ce6-b689-458c-8cc5-15cd9595b161 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2025 + speciesSurveyCode: BALICAP + weightEnabled: true +- !SpeciesProtocol + id: bc447919-f407-4c27-bf3b-9f608eb7d8ab + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2024 + speciesSurveyCode: BALISTZ + weightEnabled: true +- !SpeciesProtocol + id: 8a8f875d-3b54-42a6-82bd-5712ed85e041 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 805 + speciesSurveyCode: BATHDUB + weightEnabled: true +- !SpeciesProtocol + id: 84a06b71-b9ee-4ec7-8d31-9814e0395ebf + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2597 + speciesSurveyCode: BATHEUR + weightEnabled: true +- !SpeciesProtocol + id: 783730cb-25e8-4fee-9625-cb028cee0520 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2002 + speciesSurveyCode: BATHPRO + weightEnabled: true +- !SpeciesProtocol + id: 6a2a87c2-deaa-4936-8f32-8b188f9ea608 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 523 + speciesSurveyCode: BATHSPO + weightEnabled: true +- !SpeciesProtocol + id: b0c45ed6-6535-426f-a577-3a499909a419 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1488 + speciesSurveyCode: BELOBEO + weightEnabled: true +- !SpeciesProtocol + id: be8b2226-96e1-432c-83c6-a3254977af06 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1416 + speciesSurveyCode: BENTGLA + weightEnabled: true +- !SpeciesProtocol + id: ee6355b9-292f-4fdd-9084-35377975a6ae + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1609 + speciesSurveyCode: BERYDEC + weightEnabled: true +- !SpeciesProtocol + id: 5fd3ab62-efca-42d9-861f-2b8c615f9460 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1610 + speciesSurveyCode: BERYSPL + weightEnabled: true +- !SpeciesProtocol + id: fa209f55-2827-458d-9058-02e743d6384f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1818 + speciesSurveyCode: BLENOCE + weightEnabled: true +- !SpeciesProtocol + id: 97f9116d-72dd-437e-9141-c39b1c10b219 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1698 + speciesSurveyCode: BOOPBOO + weightEnabled: true +- !SpeciesProtocol + id: 4c05980c-cde3-4ca4-9086-6e27c8594850 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1672 + speciesSurveyCode: BRAMBRA + weightEnabled: true +- !SpeciesProtocol + id: bb5f6b4e-e8c7-4470-b2eb-f2797f6b100d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 300 + speciesSurveyCode: BUCCUND + weightEnabled: true +- !SpeciesProtocol + id: b38890ae-1125-4615-97c8-3a846a148f8b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3702 + speciesSurveyCode: BUENJEF + weightEnabled: true +- !SpeciesProtocol + id: c13af633-6c77-46ff-97db-601a99364f86 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2004 + speciesSurveyCode: BUGLLUT + weightEnabled: true +- !SpeciesProtocol + id: 332a9795-6188-48dd-9352-b45d5eb61595 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1811 + speciesSurveyCode: CALLLYR + weightEnabled: true +- !SpeciesProtocol + id: 6ea251ce-4185-4d22-bf99-d15ad10e013b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1812 + speciesSurveyCode: CALLMAC + weightEnabled: true +- !SpeciesProtocol + id: e962d490-1832-43a2-89b7-73c308f56a0e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1813 + speciesSurveyCode: CALLRET + weightEnabled: true +- !SpeciesProtocol + id: 90285afa-4fb3-432a-8bc1-78d5916e1235 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1055 + speciesSurveyCode: CANCBEL + weightEnabled: true +- !SpeciesProtocol + id: dac3d161-71d0-498c-8b88-cae2bc80a57c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1054 + speciesSurveyCode: CANCPAG + weightEnabled: true +- !SpeciesProtocol + id: 06372f2f-5725-4904-8535-887801330260 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1624 + speciesSurveyCode: CAPRAPE + weightEnabled: true +- !SpeciesProtocol + id: 885d7dfb-33cd-4cc4-8026-ab2f6463d9d5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1272 + speciesSurveyCode: CENTCRE + weightEnabled: true +- !SpeciesProtocol + id: 05cc8f95-179f-4635-8d9d-ef0ccb341add + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1734 + speciesSurveyCode: CENTEXO + weightEnabled: true +- !SpeciesProtocol + id: 88e07ffd-79f8-4f3e-816a-87daed2b5823 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2207 + speciesSurveyCode: CENTFAB + weightEnabled: true +- !SpeciesProtocol + id: 097dec81-f586-4dc6-9fab-02ce5828a160 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 632 + speciesSurveyCode: CENTNIR + weightEnabled: true +- !SpeciesProtocol + id: 65c5cc3d-2739-4c2a-9b80-a9a7f91d47bc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1278 + speciesSurveyCode: CENTSQU + weightEnabled: true +- !SpeciesProtocol + id: 2fe7c9cf-b757-4256-8b30-c295524f4c06 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1654 + speciesSurveyCode: CEPORUB + weightEnabled: true +- !SpeciesProtocol + id: 116f3b72-7fcd-46d7-a07b-5191d1a71199 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1417 + speciesSurveyCode: CERAMAD + weightEnabled: true +- !SpeciesProtocol + id: d2660cca-bbd1-4b04-8eb1-7260a41c33d1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1383 + speciesSurveyCode: CHAUSLO + weightEnabled: true +- !SpeciesProtocol + id: 8888d0e0-b134-4263-b393-764753a3c449 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1879 + speciesSurveyCode: CHELLAB + weightEnabled: true +- !SpeciesProtocol + id: 036db3c9-0495-443e-85a8-303281f8ee2f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1335 + speciesSurveyCode: CHIMMON + weightEnabled: true +- !SpeciesProtocol + id: 1e6cea11-f59c-4418-80a6-fabe7b03be8e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1834 + speciesSurveyCode: CHIRASC + weightEnabled: true +- !SpeciesProtocol + id: 3e01d68c-4639-4fd2-93fe-d68a6d6ac366 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 365 + speciesSurveyCode: CHLAOPE + weightEnabled: true +- !SpeciesProtocol + id: 9843cf6f-231d-4485-8653-f789410244bb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 367 + speciesSurveyCode: CHLAVAR + weightEnabled: true +- !SpeciesProtocol + id: fb3194c0-4db9-47a7-9359-a4c4e5555964 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1410 + speciesSurveyCode: CHLOAGA + weightEnabled: true +- !SpeciesProtocol + id: b0435a4d-328c-4c10-a277-0b4b2e988fee + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1562 + speciesSurveyCode: CILIATZ + weightEnabled: true +- !SpeciesProtocol + id: 1058c26c-8c56-48f8-b8c7-f4e680f3b7f1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1563 + speciesSurveyCode: CILIMUS + weightEnabled: true +- !SpeciesProtocol + id: 134e0e89-6605-4722-8dc5-bc84b4680bab + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1349 + speciesSurveyCode: CLUPHAR + weightEnabled: true +- !SpeciesProtocol + id: 461450d8-17ad-432e-859b-310b96cccfba + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1532 + speciesSurveyCode: COELCOE + weightEnabled: true +- !SpeciesProtocol + id: ad539e1a-6c05-47cf-8405-3e127770c5c6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2604 + speciesSurveyCode: COELLAB + weightEnabled: true +- !SpeciesProtocol + id: 0dcc1c5f-b80e-47b3-8271-84815c96869e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1467 + speciesSurveyCode: CONGCON + weightEnabled: true +- !SpeciesProtocol + id: c1b4c34d-ad53-44fd-9a76-153388e677ef + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1535 + speciesSurveyCode: CORYRUP + weightEnabled: true +- !SpeciesProtocol + id: 5fe60004-eec1-4561-9389-a0a4a2b4d04b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 931 + speciesSurveyCode: CRANCRA + weightEnabled: true +- !SpeciesProtocol + id: 7c4e2e81-8ab3-41e6-8792-0194170607fd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 930 + speciesSurveyCode: CRANGOZ + weightEnabled: true +- !SpeciesProtocol + id: 7091cdf2-1134-46d3-90ab-70b0652ad512 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 372 + speciesSurveyCode: CRASGIG + weightEnabled: true +- !SpeciesProtocol + id: 81b2b211-045b-4fd4-b042-61b95d9c21dc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1797 + speciesSurveyCode: CRYSLIN + weightEnabled: true +- !SpeciesProtocol + id: 1fb83e18-f6bb-4d69-a52d-6418c9d379fc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1736 + speciesSurveyCode: CTENRUP + weightEnabled: true +- !SpeciesProtocol + id: 1912e529-fb06-44af-ae3b-9b1f2bdf1ec0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4258 + speciesSurveyCode: CYCLBRA + weightEnabled: true +- !SpeciesProtocol + id: 8876b70b-b0ed-4f85-beee-9dca75a29c5e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6819 + speciesSurveyCode: CYCLMIC + weightEnabled: true +- !SpeciesProtocol + id: 086d946b-cf90-47e4-9b9d-ab79b49fd911 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 670 + speciesSurveyCode: CYCLOTZ + weightEnabled: true +- !SpeciesProtocol + id: 08dc98ed-bd76-44d4-b559-be04a52e11fb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1621 + speciesSurveyCode: CYTTROS + weightEnabled: true +- !SpeciesProtocol + id: 863d5dec-9c8f-476c-9102-b745efa20ef5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1282 + speciesSurveyCode: DALALIC + weightEnabled: true +- !SpeciesProtocol + id: 307d23ac-05bc-4f72-8dae-5838aafc6ce4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1322 + speciesSurveyCode: DASYPAS + weightEnabled: true +- !SpeciesProtocol + id: 1155f0ca-86dc-4958-b9e3-ef03e667116e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1273 + speciesSurveyCode: DEANCAL + weightEnabled: true +- !SpeciesProtocol + id: 8e59bcf0-90b0-42ca-8978-f86419cc82c4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 7558 + speciesSurveyCode: DEANPRO + weightEnabled: true +- !SpeciesProtocol + id: 8bfc32f5-cf8f-438f-b14a-f62953a29033 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1421 + speciesSurveyCode: DIAPHUZ + weightEnabled: true +- !SpeciesProtocol + id: c37c6234-1a17-49af-b6ee-09ba96c82f5b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1423 + speciesSurveyCode: DIAPMET + weightEnabled: true +- !SpeciesProtocol + id: 8a1779d6-6c43-40c2-94f9-94ea84108a65 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1644 + speciesSurveyCode: DICELAB + weightEnabled: true +- !SpeciesProtocol + id: d8e043c4-98d3-41ce-b762-ad68995e9b0c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1645 + speciesSurveyCode: DICEPUN + weightEnabled: true +- !SpeciesProtocol + id: a98b7423-7a92-40cc-8f97-c90e3602c378 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3195 + speciesSurveyCode: DICHBON + weightEnabled: true +- !SpeciesProtocol + id: f8625468-8bdf-4dde-9f88-dffa8a0ca06e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2006 + speciesSurveyCode: DICOCUN + weightEnabled: true +- !SpeciesProtocol + id: fe63bed6-7f7c-4eb9-afc3-b388668e62bd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1701 + speciesSurveyCode: DIPLCER + weightEnabled: true +- !SpeciesProtocol + id: a0deaadb-c34d-4742-8b0c-48f162441dce + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2041 + speciesSurveyCode: DIPLECZ + weightEnabled: true +- !SpeciesProtocol + id: 362c08ee-9387-4647-b705-02910c154de2 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1703 + speciesSurveyCode: DIPLSAR + weightEnabled: true +- !SpeciesProtocol + id: 5a5ab30b-d0ca-46e8-8cc7-63e4983c9ee7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1704 + speciesSurveyCode: DIPLVUL + weightEnabled: true +- !SpeciesProtocol + id: cc28fb0f-dc0f-4cd0-97fe-60bd81ef68fd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1863 + speciesSurveyCode: ECHIDRU + weightEnabled: true +- !SpeciesProtocol + id: 29fc7b1d-e6fc-4b55-812c-454832508fd2 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1762 + speciesSurveyCode: ECHIVIP + weightEnabled: true +- !SpeciesProtocol + id: 602ade13-1863-4aa9-a4a9-6e84a9b73438 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 522 + speciesSurveyCode: ELEDCIR + weightEnabled: true +- !SpeciesProtocol + id: eab2add1-2d7a-4327-ba36-f3c2f29634d0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1577 + speciesSurveyCode: ENCHCIM + weightEnabled: true +- !SpeciesProtocol + id: e4577b1e-18d1-459c-acff-04aedf4e917d + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1362 + speciesSurveyCode: ENGRENC + weightEnabled: true +- !SpeciesProtocol + id: 85f521b3-7779-4633-9e74-6ddcfffe864e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1510 + speciesSurveyCode: ENTEAEQ + weightEnabled: true +- !SpeciesProtocol + id: 4d3d9383-c31f-445b-a719-3429575e7a14 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6816 + speciesSurveyCode: EPHYHOS + weightEnabled: true +- !SpeciesProtocol + id: 71d3b9b5-0c5b-406e-8ef4-44d736e8eaa9 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1651 + speciesSurveyCode: EPIGTEL + weightEnabled: true +- !SpeciesProtocol + id: 0da78cbe-4880-44eb-8386-434c5b955d2d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2608 + speciesSurveyCode: ETMOPRI + weightEnabled: true +- !SpeciesProtocol + id: f4206fda-1328-4df1-b922-4ce14f7ea31e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1275 + speciesSurveyCode: ETMOSPI + weightEnabled: true +- !SpeciesProtocol + id: 056a7ad4-934c-4d69-b068-1a2dd64012cb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2786 + speciesSurveyCode: EUPHAUX + weightEnabled: true +- !SpeciesProtocol + id: 3f3583fb-15b7-49d6-b8b2-45dcf7cb1b41 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1118 + speciesSurveyCode: EURYPEL + weightEnabled: true +- !SpeciesProtocol + id: 4076fe7e-01fe-4164-820a-47b50dfa8e02 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1920 + speciesSurveyCode: EUTRGUR + weightEnabled: true +- !SpeciesProtocol + id: 0ef8f984-d0dd-47bd-b1ca-7a68594f2d3c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 7693 + speciesSurveyCode: GADIARG + weightEnabled: true +- !SpeciesProtocol + id: 93a92d1e-9214-452a-904b-0404427ea69a + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1543 + speciesSurveyCode: GADUMOR + weightEnabled: true +- !SpeciesProtocol + id: d8238f71-163b-4770-83d2-a1fad1d7d02b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1547 + speciesSurveyCode: GAIDBIS + weightEnabled: true +- !SpeciesProtocol + id: a1274e4d-ccb4-40f4-b4b9-510864ee9e27 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1581 + speciesSurveyCode: GAIDMAC + weightEnabled: true +- !SpeciesProtocol + id: db0aee40-66ed-4194-b0d2-a3b319f2c2cb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1579 + speciesSurveyCode: GAIDMED + weightEnabled: true +- !SpeciesProtocol + id: 58f0d777-bb63-4484-80c3-5931b063af8a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1578 + speciesSurveyCode: GAIDROZ + weightEnabled: true +- !SpeciesProtocol + id: c83219f4-2a0c-4d6d-88bc-f1c07eb77707 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1580 + speciesSurveyCode: GAIDVUL + weightEnabled: true +- !SpeciesProtocol + id: 0dabac56-f821-4fe9-8408-f24b4d141949 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1254 + speciesSurveyCode: GALEGAL + weightEnabled: true +- !SpeciesProtocol + id: 61287c6d-0705-447c-8a7a-a2c8fa18135b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1245 + speciesSurveyCode: GALEMEL + weightEnabled: true +- !SpeciesProtocol + id: c71a0430-c437-4557-a8cb-4e38a2b61fea + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1085 + speciesSurveyCode: GERYONZ + weightEnabled: true +- !SpeciesProtocol + id: 619431a1-3b3c-4aba-9b2a-4d86b9cd9bf3 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1084 + speciesSurveyCode: GERYQUI + weightEnabled: true +- !SpeciesProtocol + id: ec1c53c4-2698-4e1b-a147-d5691445ede1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1087 + speciesSurveyCode: GERYTRI + weightEnabled: true +- !SpeciesProtocol + id: 9a8f1027-3678-4f99-ab35-84cd51378924 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1980 + speciesSurveyCode: GLYPCYN + weightEnabled: true +- !SpeciesProtocol + id: 00fbec98-5635-4e6a-9e5d-ddc59fc903ec + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 795 + speciesSurveyCode: GNATZOE + weightEnabled: true +- !SpeciesProtocol + id: 0efe8cbd-e369-4f00-a155-243ee6f383d4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1782 + speciesSurveyCode: GOBIIDX + weightEnabled: true +- !SpeciesProtocol + id: fa4f8b45-1896-4a04-a58c-bbc05076ae17 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1785 + speciesSurveyCode: GOBINIG + weightEnabled: true +- !SpeciesProtocol + id: e8febb36-573b-416d-93b8-3e6e084f6115 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1786 + speciesSurveyCode: GOBIPAG + weightEnabled: true +- !SpeciesProtocol + id: f006875b-d586-4cd0-a842-aa5e8f64bbf3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2614 + speciesSurveyCode: GONOBAT + weightEnabled: true +- !SpeciesProtocol + id: d044569e-bbb5-4fd6-a721-ab0973156cbe + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6822 + speciesSurveyCode: GONOELO + weightEnabled: true +- !SpeciesProtocol + id: 50658478-3bed-4f6b-a4c2-d1651d0a19e6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1753 + speciesSurveyCode: GYMNSEM + weightEnabled: true +- !SpeciesProtocol + id: 76a383aa-5855-483d-9282-34edc2950f6e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1588 + speciesSurveyCode: HALAJOH + weightEnabled: true +- !SpeciesProtocol + id: a526c110-fc7e-4395-8783-f7c1321818d5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1905 + speciesSurveyCode: HELIDAC + weightEnabled: true +- !SpeciesProtocol + id: 4d73ad60-f1b6-4bc5-80c8-8d790076196f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1222 + speciesSurveyCode: HEPTPER + weightEnabled: true +- !SpeciesProtocol + id: 59e24022-d8f0-404b-89bc-e33365dbc0c1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1220 + speciesSurveyCode: HEXAGRI + weightEnabled: true +- !SpeciesProtocol + id: 993e18fd-5abe-4576-ba9e-3ce8746e6c1c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1512 + speciesSurveyCode: HIPPHIC + weightEnabled: true +- !SpeciesProtocol + id: 3858e1ce-f0b1-490a-94b8-97924e6899ad + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1511 + speciesSurveyCode: HIPPOCZ + weightEnabled: true +- !SpeciesProtocol + id: 6d292f43-d0ce-4341-9734-85dbf244cf79 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1982 + speciesSurveyCode: HIPPPLA + weightEnabled: true +- !SpeciesProtocol + id: 255a10b4-12fd-41e4-9898-4ff553a60774 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1513 + speciesSurveyCode: HIPPRAM + weightEnabled: true +- !SpeciesProtocol + id: b88f2f38-524f-4084-aedd-c80d81334f5d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 501 + speciesSurveyCode: HISTITZ + weightEnabled: true +- !SpeciesProtocol + id: 13ba6a28-d13b-4f96-a333-cc6873763283 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 503 + speciesSurveyCode: HISTREV + weightEnabled: true +- !SpeciesProtocol + id: ec67bdc8-3fc1-450b-b3eb-106803246507 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6823 + speciesSurveyCode: HOLTMAC + weightEnabled: true +- !SpeciesProtocol + id: dcf2eeaa-cf4e-447b-87a3-e768c3e5d4fa + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 951 + speciesSurveyCode: HOMAGAM + weightEnabled: true +- !SpeciesProtocol + id: 5ee0c1f9-73a8-4281-be97-bd0d99baa2e8 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1614 + speciesSurveyCode: HOPLATL + weightEnabled: true +- !SpeciesProtocol + id: 79995258-07c8-4b5f-ab3e-337ee7b27f15 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1613 + speciesSurveyCode: HOPLMED + weightEnabled: true +- !SpeciesProtocol + id: 83edf137-e86a-42a3-973d-5d5760123de4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2630 + speciesSurveyCode: HYDRMIR + weightEnabled: true +- !SpeciesProtocol + id: 3c73bd96-e45f-4da2-a698-1e415c023ea9 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1537 + speciesSurveyCode: HYMEITA + weightEnabled: true +- !SpeciesProtocol + id: 08c42071-df40-41d6-a8d8-74e90517e388 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1756 + speciesSurveyCode: HYPEIMM + weightEnabled: true +- !SpeciesProtocol + id: 99c93f66-0c76-4ecb-bbd4-75934f0bfca0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1755 + speciesSurveyCode: HYPELAN + weightEnabled: true +- !SpeciesProtocol + id: 7b46d8fe-94c5-4644-9518-495b201c74d4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 507 + speciesSurveyCode: ILLECOI + weightEnabled: true +- !SpeciesProtocol + id: 2181825e-3478-40b6-800f-28857e1f09aa + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1730 + speciesSurveyCode: LABRBER + weightEnabled: true +- !SpeciesProtocol + id: 5ffc7e99-aab1-41bb-a5c6-d749b71ac0cd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1729 + speciesSurveyCode: LABRBIM + weightEnabled: true +- !SpeciesProtocol + id: 2edd78f8-0679-49d5-b1b7-104ff3a01351 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1728 + speciesSurveyCode: LABRUSZ + weightEnabled: true +- !SpeciesProtocol + id: bd3edd25-d865-4a8a-acd4-2af278ae499a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1231 + speciesSurveyCode: LAMNNAS + weightEnabled: true +- !SpeciesProtocol + id: 94b18f44-3d1c-4ac2-9c22-9ba52f62938c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 789 + speciesSurveyCode: LAMPANZ + weightEnabled: true +- !SpeciesProtocol + id: 60c170ca-d9e0-452f-8521-6837652f7dd0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1430 + speciesSurveyCode: LAMPATE + weightEnabled: true +- !SpeciesProtocol + id: 155cb074-0d32-4b70-878f-95f5f9808528 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1429 + speciesSurveyCode: LAMPCRO + weightEnabled: true +- !SpeciesProtocol + id: 6fd09561-fabd-4ef9-9205-9aaf926abc40 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4884 + speciesSurveyCode: LAMPINT + weightEnabled: true +- !SpeciesProtocol + id: 2e9540f0-c1c4-467b-bd6b-be30bb64e108 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1431 + speciesSurveyCode: LAMPMAC + weightEnabled: true +- !SpeciesProtocol + id: f6941ce3-c9c6-42af-98df-d8cf734ec933 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1961 + speciesSurveyCode: LEPIBOS + weightEnabled: true +- !SpeciesProtocol + id: 4aac5dea-24b2-4ed6-9111-92a40063a421 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1768 + speciesSurveyCode: LEPICAU + weightEnabled: true +- !SpeciesProtocol + id: 3a203233-24ba-407a-8b35-e7163fa0a0b0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1917 + speciesSurveyCode: LEPICAV + weightEnabled: true +- !SpeciesProtocol + id: 83f620ae-31f6-45b2-8b02-9d1d14fc3004 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1591 + speciesSurveyCode: LEPIEQU + weightEnabled: true +- !SpeciesProtocol + id: 6b5fd311-746c-4d89-948d-aa7a3f35a127 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1960 + speciesSurveyCode: LEPIWHI + weightEnabled: true +- !SpeciesProtocol + id: e1239ed1-f858-4e3c-8165-38a181a1145d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1464 + speciesSurveyCode: LEPTLON + weightEnabled: true +- !SpeciesProtocol + id: ad00dcca-591c-44c3-afda-9bd7aebfc692 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1791 + speciesSurveyCode: LESUFRI + weightEnabled: true +- !SpeciesProtocol + id: 5222b22c-65bd-415d-a583-6860fac56edb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1986 + speciesSurveyCode: LIMALIM + weightEnabled: true +- !SpeciesProtocol + id: 7340354d-2dc8-4512-bd2f-f921594b5556 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1944 + speciesSurveyCode: LIPALIP + weightEnabled: true +- !SpeciesProtocol + id: eddb09c2-015c-4a01-bde8-19c0703ead99 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1943 + speciesSurveyCode: LIPARIZ + weightEnabled: true +- !SpeciesProtocol + id: 2a74c0da-d3ae-499c-98f6-d5ecfbccedd3 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1710 + speciesSurveyCode: LITHMOR + weightEnabled: true +- !SpeciesProtocol + id: e9d54516-afeb-4139-8c32-5e878591761a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1882 + speciesSurveyCode: LIZAAUR + weightEnabled: true +- !SpeciesProtocol + id: cef5250c-6161-4a02-bd4a-18e22979ee0a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1881 + speciesSurveyCode: LIZARAM + weightEnabled: true +- !SpeciesProtocol + id: 54a55abf-de90-4d85-92d9-6757693a2499 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1435 + speciesSurveyCode: LOBIGEM + weightEnabled: true +- !SpeciesProtocol + id: e00ea321-8c0f-4fd7-9382-4d0f0ca60b00 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 12582 + speciesSurveyCode: LOLIFOR + weightEnabled: true +- !SpeciesProtocol + id: def8c536-9449-4c34-b288-8208c628e6c1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 489 + speciesSurveyCode: LOLIVUL + weightEnabled: true +- !SpeciesProtocol + id: 9f89ba47-2c38-400b-b524-974100141802 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2050 + speciesSurveyCode: LOPHBUD + weightEnabled: true +- !SpeciesProtocol + id: e5b5d6d3-9b88-4278-b16e-23cf1ba265f8 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2049 + speciesSurveyCode: LOPHPIS + weightEnabled: true +- !SpeciesProtocol + id: 08f75442-292b-4bca-b6e5-95ea7f5479a0 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1131 + speciesSurveyCode: MACRAFF + weightEnabled: true +- !SpeciesProtocol + id: 684be00f-3e3c-4e36-b15b-24e1dd3ef87b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1523 + speciesSurveyCode: MACRBER + weightEnabled: true +- !SpeciesProtocol + id: b2666730-212c-40ea-b075-419af56a33d7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1076 + speciesSurveyCode: MACRPUB + weightEnabled: true +- !SpeciesProtocol + id: d567a2f2-5aeb-46ee-b2b9-c56b7a974555 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1497 + speciesSurveyCode: MACRSCO + weightEnabled: true +- !SpeciesProtocol + id: 3f8c160d-1878-4654-9b4a-aa66b2569eb7 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1110 + speciesSurveyCode: MAJABRA + weightEnabled: true +- !SpeciesProtocol + id: a0ffeb60-5dd9-4488-9892-2cfedc11a8c0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1530 + speciesSurveyCode: MALALAE + weightEnabled: true +- !SpeciesProtocol + id: beb8d665-1c7a-4bc6-bb78-1593e35f1800 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2639 + speciesSurveyCode: MAULARG + weightEnabled: true +- !SpeciesProtocol + id: 8d163203-ddeb-493a-8300-b4be90cca719 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6829 + speciesSurveyCode: MAULMAU + weightEnabled: true +- !SpeciesProtocol + id: 814bf5ed-48c0-4e79-a986-b25871c51e1a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2640 + speciesSurveyCode: MAULMIC + weightEnabled: true +- !SpeciesProtocol + id: daf24f5c-2a7e-42ca-bdff-68a00a5ff7b9 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1379 + speciesSurveyCode: MAURMUE + weightEnabled: true +- !SpeciesProtocol + id: f23a9da5-9675-441c-a813-269a456d3ad9 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1378 + speciesSurveyCode: MAUROLZ + weightEnabled: true +- !SpeciesProtocol + id: 2ea002ff-2959-493d-a473-def1646ba0fc + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 839 + speciesSurveyCode: MEGANOR + weightEnabled: true +- !SpeciesProtocol + id: 04e5c84b-7f3e-4842-9c8e-9ce2c2d3df1a + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 1549 + speciesSurveyCode: MELAAEG + weightEnabled: true +- !SpeciesProtocol + id: 0af1bfb6-7fb1-4518-a532-a23fed9d1148 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1848 + speciesSurveyCode: MELAATL + weightEnabled: true +- !SpeciesProtocol + id: 11895dfe-def9-478b-815f-d4caec5a87be + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2643 + speciesSurveyCode: MELABAR + weightEnabled: true +- !SpeciesProtocol + id: de25b4a8-fcb7-46c6-b8e1-7ca2f3fdf131 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1548 + speciesSurveyCode: MELAZUG + weightEnabled: true +- !SpeciesProtocol + id: 5f7e400c-6a03-4092-9ccf-0031823b3a14 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 1540 + speciesSurveyCode: MERLMCC + weightEnabled: true +- !SpeciesProtocol + id: 2a8122cf-d238-4820-a7b9-eacaf1f302bd + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 1551 + speciesSurveyCode: MERLMNG + weightEnabled: true +- !SpeciesProtocol + id: 16921fae-eeac-48c4-855e-4484aad81427 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1988 + speciesSurveyCode: MICRKIT + weightEnabled: true +- !SpeciesProtocol + id: d5887f0e-bd99-4f66-a967-8fcff8224b32 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 1553 + speciesSurveyCode: MICRPOU + weightEnabled: true +- !SpeciesProtocol + id: 7467ee30-cc51-4004-a45e-4f1ecddd8fc5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2011 + speciesSurveyCode: MICRVAR + weightEnabled: true +- !SpeciesProtocol + id: 6e8b3d2e-09cc-4bee-a95f-1a287948133f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2036 + speciesSurveyCode: MOLAMOL + weightEnabled: true +- !SpeciesProtocol + id: 5de5e20f-343f-4d2b-bbb5-ae2925b4dd96 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1568 + speciesSurveyCode: MOLVMAC + weightEnabled: true +- !SpeciesProtocol + id: 7986e663-1889-4d35-8494-0c879e541ac0 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1566 + speciesSurveyCode: MOLVMOL + weightEnabled: true +- !SpeciesProtocol + id: f431a0c5-e81f-4f85-9319-f5af021595dd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1593 + speciesSurveyCode: MORAMOR + weightEnabled: true +- !SpeciesProtocol + id: 0eed3b64-47bc-4f85-9b1d-655d472b60ad + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1690 + speciesSurveyCode: MULLSUR + weightEnabled: true +- !SpeciesProtocol + id: a8feb2c8-e665-413c-a443-c24600023d8c + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1016 + speciesSurveyCode: MUNIBAM + weightEnabled: true +- !SpeciesProtocol + id: 5b4d30e3-bcb8-49f4-a48d-5e7f37a080c5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1015 + speciesSurveyCode: MUNIDAZ + weightEnabled: true +- !SpeciesProtocol + id: f45ebce1-18f0-4661-a169-01c5df8a37a6 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1017 + speciesSurveyCode: MUNIINT + weightEnabled: true +- !SpeciesProtocol + id: a75249a6-b576-42b2-b199-7320fe0a98c5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1257 + speciesSurveyCode: MUSTAST + weightEnabled: true +- !SpeciesProtocol + id: 60bf0df1-c77e-43a9-8853-dd200dd63146 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1255 + speciesSurveyCode: MUSTELZ + weightEnabled: true +- !SpeciesProtocol + id: 2d7eef32-749c-498e-9279-4e2233d1a168 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2533 + speciesSurveyCode: MYCTOPZ + weightEnabled: true +- !SpeciesProtocol + id: 944db3c6-d870-4f03-8abc-9a985a6feb65 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1415 + speciesSurveyCode: MYCTPUN + weightEnabled: true +- !SpeciesProtocol + id: f08b2e04-b756-468b-8303-98477264a813 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1329 + speciesSurveyCode: MYLIAQU + weightEnabled: true +- !SpeciesProtocol + id: cf5b0986-53cb-45fb-88d1-8e8651bf5b5c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1927 + speciesSurveyCode: MYOXSCU + weightEnabled: true +- !SpeciesProtocol + id: 6c9f9127-d15e-420f-9a2d-8e2cf3963744 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 740 + speciesSurveyCode: MYSIDAX + weightEnabled: true +- !SpeciesProtocol + id: db79fe5f-5832-4e59-a987-e36a288efe8a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1215 + speciesSurveyCode: MYXIGLU + weightEnabled: true +- !SpeciesProtocol + id: c78aa44b-f133-440f-94df-cc9225ba9e94 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1458 + speciesSurveyCode: NEMISCO + weightEnabled: true +- !SpeciesProtocol + id: e7a49d2d-2201-4d90-aa79-833be659a883 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4392 + speciesSurveyCode: NEOSMAC + weightEnabled: true +- !SpeciesProtocol + id: 7f631e4e-a8ef-4599-a0af-d6998c6e7081 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 299 + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 949 + speciesSurveyCode: NEPHNOR + weightEnabled: true +- !SpeciesProtocol + id: 6e74a424-daa2-4bbe-86a2-2937cfa8371b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1506 + speciesSurveyCode: NEROLUM + weightEnabled: true +- !SpeciesProtocol + id: aa2a0373-66bd-40a0-9aec-71b3c7c787c8 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1508 + speciesSurveyCode: NEROOPH + weightEnabled: true +- !SpeciesProtocol + id: 7b66659c-e9cd-4d97-9133-650bed39fb56 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1527 + speciesSurveyCode: NEZUAEQ + weightEnabled: true +- !SpeciesProtocol + id: 579ae3d1-4778-49a3-801e-b6ea5e34c408 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1528 + speciesSurveyCode: NEZUSCL + weightEnabled: true +- !SpeciesProtocol + id: b65cdc42-00fd-4712-a444-f760c9eb762a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2649 + speciesSurveyCode: NORMOPE + weightEnabled: true +- !SpeciesProtocol + id: da646074-6dc4-4bdf-a234-0f5efa7624ea + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1483 + speciesSurveyCode: NOTABON + weightEnabled: true +- !SpeciesProtocol + id: 8b2459c0-edcb-4696-9013-844a9052547d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4389 + speciesSurveyCode: NOTOCAU + weightEnabled: true +- !SpeciesProtocol + id: a158671e-dc20-4e01-9e20-7cb8941522ab + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1439 + speciesSurveyCode: NOTOKRO + weightEnabled: true +- !SpeciesProtocol + id: f547a007-98ee-4398-80e3-063db39ff992 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1448 + speciesSurveyCode: NOTORIS + weightEnabled: true +- !SpeciesProtocol + id: 99c4f6b5-13ab-4764-a7b4-07766d1eb1ae + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1436 + speciesSurveyCode: NOTOSCZ + weightEnabled: true +- !SpeciesProtocol + id: 93af0756-d043-43ab-9598-28a31ea32085 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 512 + speciesSurveyCode: OCTOPOX + weightEnabled: true +- !SpeciesProtocol + id: 58f57fb7-12db-46b0-8f28-00fec2c7a3ff + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 513 + speciesSurveyCode: OCTOPUZ + weightEnabled: true +- !SpeciesProtocol + id: 1ab536bc-e356-4176-9b44-cdc72c986c7d + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 514 + speciesSurveyCode: OCTOVUL + weightEnabled: true +- !SpeciesProtocol + id: 1b7ab675-18bb-4e51-b3bf-d20e2461c910 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1857 + speciesSurveyCode: OPHIBAR + weightEnabled: true +- !SpeciesProtocol + id: 47184b0e-82d5-4597-8cde-8888ab98805e + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 370 + speciesSurveyCode: OSTREDU + weightEnabled: true +- !SpeciesProtocol + id: c7793af7-a066-4880-b8c6-85ec6b2939db + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1714 + speciesSurveyCode: PAGEACA + weightEnabled: true +- !SpeciesProtocol + id: b51f22f1-ca6e-403a-b66b-2beac1600d58 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1715 + speciesSurveyCode: PAGEBOG + weightEnabled: true +- !SpeciesProtocol + id: d949cf3b-5526-4266-b3d5-7e0dc1513c1e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1713 + speciesSurveyCode: PAGEERY + weightEnabled: true +- !SpeciesProtocol + id: fd24c279-c039-4d59-8dad-0c9e0e622c0c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1712 + speciesSurveyCode: PAGELLZ + weightEnabled: true +- !SpeciesProtocol + id: fc8bddc2-584b-4d33-ba9f-bb6528d9a338 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1695 + speciesSurveyCode: PAGRPAG + weightEnabled: true +- !SpeciesProtocol + id: 9f064dc3-aa86-4740-b98e-dd0c4c26908f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 920 + speciesSurveyCode: PALASER + weightEnabled: true +- !SpeciesProtocol + id: f64afed5-eab7-410d-a0a2-c07027ba7b0d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 299 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 958 + speciesSurveyCode: PALIMAU + weightEnabled: true +- !SpeciesProtocol + id: 69b55d5a-8db5-4655-ab3f-f6b617292c35 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 299 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 957 + speciesSurveyCode: PALIVUL + weightEnabled: true +- !SpeciesProtocol + id: 750d01c3-32f6-4710-a364-fd281b7080b0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1444 + speciesSurveyCode: PARACOR + weightEnabled: true +- !SpeciesProtocol + id: 31182cd3-6249-4dde-b758-4a15ecfe550a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1028 + speciesSurveyCode: PARAMOL + weightEnabled: true +- !SpeciesProtocol + id: afc925ff-e22a-43ab-a7ba-e95e4f756264 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3561 + speciesSurveyCode: PARASUL + weightEnabled: true +- !SpeciesProtocol + id: 1885ef26-e41c-46d1-acc9-803632d76b00 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 867 + speciesSurveyCode: PASIMUL + weightEnabled: true +- !SpeciesProtocol + id: 1ec16174-bfd8-4b7d-a23f-b635f410da1f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 868 + speciesSurveyCode: PASISIV + weightEnabled: true +- !SpeciesProtocol + id: e0c7be8b-c660-4dc3-84d0-77529dd52749 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 363 + speciesSurveyCode: PECTMAX + weightEnabled: true +- !SpeciesProtocol + id: a7eff104-9634-47fe-9479-f9c7e205bf51 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1212 + speciesSurveyCode: PETRMAR + weightEnabled: true +- !SpeciesProtocol + id: 2190e410-0151-41fd-b5f6-a550613985dc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1837 + speciesSurveyCode: PHOLGUN + weightEnabled: true +- !SpeciesProtocol + id: 3d868eca-5df0-4e86-a49b-700a8c15d184 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 5857 + speciesSurveyCode: PHOTPYC + weightEnabled: true +- !SpeciesProtocol + id: 738112c8-d405-4673-b474-3f3d4f873d57 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1964 + speciesSurveyCode: PHRYNOR + weightEnabled: true +- !SpeciesProtocol + id: ae6ba222-cca3-4381-95b4-ef0783af7bec + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1573 + speciesSurveyCode: PHYCBLE + weightEnabled: true +- !SpeciesProtocol + id: c833c663-284e-4302-be9f-5ac4e0416da9 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1990 + speciesSurveyCode: PLATFLE + weightEnabled: true +- !SpeciesProtocol + id: 270ceb5d-3e2b-4c1b-bc2d-069c4043288c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1978 + speciesSurveyCode: PLEUPLA + weightEnabled: true +- !SpeciesProtocol + id: 802a1818-6b4a-4b5a-b7eb-df2d6db9b9b2 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1555 + speciesSurveyCode: POLLPOL + weightEnabled: true +- !SpeciesProtocol + id: 590861c8-3960-4061-8849-4b6a27c749bf + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1556 + speciesSurveyCode: POLLVIR + weightEnabled: true +- !SpeciesProtocol + id: d04513ad-dbee-42bd-903c-c03fccf9107b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1641 + speciesSurveyCode: POLYAME + weightEnabled: true +- !SpeciesProtocol + id: 8a200365-1c7a-4fff-96fd-2bd56e6a71a3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 153 + speciesSurveyCode: POLYCHZ + weightEnabled: true +- !SpeciesProtocol + id: a866fb3b-f1c2-4b17-aaf2-d209cfbf7c71 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1372 + speciesSurveyCode: POLYCOR + weightEnabled: true +- !SpeciesProtocol + id: 1a596120-db48-464a-8fd0-adb01451e2c0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4393 + speciesSurveyCode: POLYTHA + weightEnabled: true +- !SpeciesProtocol + id: 898747f4-320d-4442-b890-dc1274776ef8 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 953 + speciesSurveyCode: POLYTYP + weightEnabled: true +- !SpeciesProtocol + id: 17195284-bba1-406f-96ec-03dfc99ef747 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4394 + speciesSurveyCode: POMALOZ + weightEnabled: true +- !SpeciesProtocol + id: a2e4031e-bc5a-4c1a-91ee-092a78b75818 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1804 + speciesSurveyCode: POMAMIN + weightEnabled: true +- !SpeciesProtocol + id: ebe27fca-9bf7-4cf3-a95b-f64e2515953c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1807 + speciesSurveyCode: POMANOR + weightEnabled: true +- !SpeciesProtocol + id: 7fc7865a-42b7-4ad7-b5f1-5299dee063ba + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1803 + speciesSurveyCode: POMATOZ + weightEnabled: true +- !SpeciesProtocol + id: 1893734c-3299-4224-86f4-55e17b065a26 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1957 + speciesSurveyCode: PSETMAX + weightEnabled: true +- !SpeciesProtocol + id: 55a175c4-22e8-4176-9480-3f1725eda45c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1306 + speciesSurveyCode: RAJABAI + weightEnabled: true +- !SpeciesProtocol + id: f43c81eb-bd8e-4370-8492-811fed8c4962 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2654 + speciesSurveyCode: RAJABAT + weightEnabled: true +- !SpeciesProtocol + id: 4d1dacce-be57-41ab-bdb8-18edd742ab5e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1301 + speciesSurveyCode: RAJABRA + weightEnabled: true +- !SpeciesProtocol + id: 76e1ca33-1d1f-4ace-9feb-e09656809638 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1310 + speciesSurveyCode: RAJACIR + weightEnabled: true +- !SpeciesProtocol + id: ee305308-78f1-4405-970e-8111852678a3 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1302 + speciesSurveyCode: RAJACLA + weightEnabled: true +- !SpeciesProtocol + id: 64c2d7f4-f0e0-49cd-8728-9cf376efc886 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1309 + speciesSurveyCode: RAJAFUL + weightEnabled: true +- !SpeciesProtocol + id: b2a26b14-6201-4fd9-813a-335e1fdb8c0a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2658 + speciesSurveyCode: RAJAKUK + weightEnabled: true +- !SpeciesProtocol + id: f7bc1566-a681-45bf-954e-a935eed07f27 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1303 + speciesSurveyCode: RAJAMIC + weightEnabled: true +- !SpeciesProtocol + id: 8aecae10-3e2b-4260-9b07-52b00acf7cec + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1304 + speciesSurveyCode: RAJAMON + weightEnabled: true +- !SpeciesProtocol + id: b9757c41-be0e-4feb-ba92-2ea72dab1584 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1311 + speciesSurveyCode: RAJANAE + weightEnabled: true +- !SpeciesProtocol + id: fa25cc1d-9cc0-42b1-9560-60ff0e68cf11 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1308 + speciesSurveyCode: RAJAOXY + weightEnabled: true +- !SpeciesProtocol + id: 0432eafc-9f0c-4b2b-8a25-c2c02c6378b0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1318 + speciesSurveyCode: RAJAUND + weightEnabled: true +- !SpeciesProtocol + id: 817e8614-9732-4916-8d54-3282bbbc3a72 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1575 + speciesSurveyCode: RANIRAN + weightEnabled: true +- !SpeciesProtocol + id: dd3c4c6e-6d30-4805-8e74-d4135947a268 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6826 + speciesSurveyCode: REMOBRA + weightEnabled: true +- !SpeciesProtocol + id: e148379c-d2da-4494-a539-14886a3cdc63 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2021 + speciesSurveyCode: REMOREM + weightEnabled: true +- !SpeciesProtocol + id: 3f8e8470-79be-4e15-ac3c-12a058aaae3f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 471 + speciesSurveyCode: ROSSMAC + weightEnabled: true +- !SpeciesProtocol + id: 2d039994-2f7d-4b8a-918d-3c9d15160b0f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3788 + speciesSurveyCode: RUVEPRE + weightEnabled: true +- !SpeciesProtocol + id: aa9224ff-baa1-4def-be8f-046ed60f28fb + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4001 + speciesSurveyCode: SAGASCH + weightEnabled: true +- !SpeciesProtocol + id: a2d4c350-8cd0-46d6-bcb7-6fb95b62c47d + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1351 + speciesSurveyCode: SARDPIL + weightEnabled: true +- !SpeciesProtocol + id: a7030188-28a3-4a04-8bef-4dc8c19f1c63 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1775 + speciesSurveyCode: SARDSAR + weightEnabled: true +- !SpeciesProtocol + id: 723c2342-8142-4d0c-ad25-022c91956c67 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 3789 + speciesSurveyCode: SCOMCOL + weightEnabled: true +- !SpeciesProtocol + id: ec81db3c-b2d4-40a2-ab36-daf220e0df3e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1491 + speciesSurveyCode: SCOMSAU + weightEnabled: true +- !SpeciesProtocol + id: 16f4a094-1904-4e50-aff9-1f2dcab3a909 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1772 + speciesSurveyCode: SCOMSCO + weightEnabled: true +- !SpeciesProtocol + id: 529c8a5f-7697-4f88-8d2f-23d5bb2d6d2f + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1956 + speciesSurveyCode: SCOPRHO + weightEnabled: true +- !SpeciesProtocol + id: d239abe5-0ed0-4c60-8528-49229ffee0f7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1895 + speciesSurveyCode: SCORELO + weightEnabled: true +- !SpeciesProtocol + id: d7d3fcd0-2dbb-4329-a4f1-c98ec6eb6889 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1897 + speciesSurveyCode: SCORLOP + weightEnabled: true +- !SpeciesProtocol + id: 640236a1-55a0-492c-bda6-31b74d25a213 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1899 + speciesSurveyCode: SCORNOT + weightEnabled: true +- !SpeciesProtocol + id: 0807b0c8-87c6-4caa-a88e-bb2e5db4be44 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1894 + speciesSurveyCode: SCORPAZ + weightEnabled: true +- !SpeciesProtocol + id: 0ca1624a-4bc2-4fcc-baeb-4755986c1f12 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1896 + speciesSurveyCode: SCORPOR + weightEnabled: true +- !SpeciesProtocol + id: 808b9cc7-5f20-4314-b80c-be28b90bdd60 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1900 + speciesSurveyCode: SCORSCR + weightEnabled: true +- !SpeciesProtocol + id: 24e50cd6-92cd-4331-adbc-b8262eac3e94 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 962 + speciesSurveyCode: SCYLARC + weightEnabled: true +- !SpeciesProtocol + id: 2c35ca09-e029-4999-85d0-b4c784fdbe6c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1242 + speciesSurveyCode: SCYLCAN + weightEnabled: true +- !SpeciesProtocol + id: f59a13d1-b7d8-49b8-af5b-6e270a8e99a0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1243 + speciesSurveyCode: SCYLSTE + weightEnabled: true +- !SpeciesProtocol + id: adf573b0-62af-47aa-a547-0da2146dd783 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1280 + speciesSurveyCode: SCYMRIN + weightEnabled: true +- !SpeciesProtocol + id: d0e10d92-b43d-4a03-a171-c5a6704366f7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6831 + speciesSurveyCode: SEARKOE + weightEnabled: true +- !SpeciesProtocol + id: ae99eb3f-4913-427e-acf8-e12e164ae17a + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 468 + speciesSurveyCode: SEPIELE + weightEnabled: true +- !SpeciesProtocol + id: 4e2fe07c-0bfe-4fe1-be67-371e715f6a94 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 467 + speciesSurveyCode: SEPIOFF + weightEnabled: true +- !SpeciesProtocol + id: 1de1082f-b74e-4a83-978c-a24050bafd81 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 476 + speciesSurveyCode: SEPIOLZ + weightEnabled: true +- !SpeciesProtocol + id: 9927c03a-4cd7-4f73-96ae-056e15b67559 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 469 + speciesSurveyCode: SEPIORB + weightEnabled: true +- !SpeciesProtocol + id: efe7de69-6e1d-4461-86de-afafb5c45edd + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 862 + speciesSurveyCode: SERGROB + weightEnabled: true +- !SpeciesProtocol + id: 06faef21-34bb-4da7-9dba-0f3bef846da7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2564 + speciesSurveyCode: SERIOLZ + weightEnabled: true +- !SpeciesProtocol + id: 68b18cb7-fae6-4e57-86ac-3ce6cbf8f151 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1627 + speciesSurveyCode: SERRANZ + weightEnabled: true +- !SpeciesProtocol + id: 9df92cb6-08b9-431b-bc37-3f9c71885e96 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 2670 + speciesSurveyCode: SERRBEA + weightEnabled: true +- !SpeciesProtocol + id: bc7f7e40-e5af-4c8b-b470-06f6eebdfb84 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1628 + speciesSurveyCode: SERRCAB + weightEnabled: true +- !SpeciesProtocol + id: 0a0608c0-d404-4e38-afb4-6b6154a4ed1c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1629 + speciesSurveyCode: SERRHEP + weightEnabled: true +- !SpeciesProtocol + id: e2d18330-32b7-43d3-b912-4dfa5973bf97 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1631 + speciesSurveyCode: SERRSCR + weightEnabled: true +- !SpeciesProtocol + id: cd1ed12a-b1f0-4843-9bf2-b9b8c67936cb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2000 + speciesSurveyCode: SOLELAS + weightEnabled: true +- !SpeciesProtocol + id: 8ccd18a2-a4b9-46fa-88a0-c4bebcae7206 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1997 + speciesSurveyCode: SOLESEN + weightEnabled: true +- !SpeciesProtocol + id: 4a13cfce-3899-48f8-8bd8-fc37cf43a111 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1996 + speciesSurveyCode: SOLEVUL + weightEnabled: true +- !SpeciesProtocol + id: 87028e55-dd66-47c0-90e2-eda178cd8cbc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1693 + speciesSurveyCode: SPARAUT + weightEnabled: true +- !SpeciesProtocol + id: 5fad7f0b-d9fc-4698-88ad-b45b604abdae + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1519 + speciesSurveyCode: SPINSPI + weightEnabled: true +- !SpeciesProtocol + id: 329f08f9-a5a4-44d5-ab1c-9e157503ba04 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1718 + speciesSurveyCode: SPONCAN + weightEnabled: true +- !SpeciesProtocol + id: 859e98d1-d2b2-4cc9-a379-20b0f8abb25d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1356 + speciesSurveyCode: SPRASPR + weightEnabled: true +- !SpeciesProtocol + id: 166b75a3-7f74-4a6e-bc83-09e8419eafce + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1266 + speciesSurveyCode: SQUAACA + weightEnabled: true +- !SpeciesProtocol + id: ce080c83-15fd-472b-a64e-1bfc9eee07c6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1265 + speciesSurveyCode: SQUALUZ + weightEnabled: true +- !SpeciesProtocol + id: ae879a86-35a7-4503-af1e-343eadff965f + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 831 + speciesSurveyCode: SQUIMAN + weightEnabled: true +- !SpeciesProtocol + id: b3d07ff0-89ac-4da1-aee6-a0ef914e0561 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6833 + speciesSurveyCode: STERDIA + weightEnabled: true +- !SpeciesProtocol + id: 070f0610-1841-423d-a3b4-f8fd03ae42bf + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 6835 + speciesSurveyCode: STOMBOA + weightEnabled: true +- !SpeciesProtocol + id: c7759567-ad69-479e-9f02-a9f5cfc7dc36 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1420 + speciesSurveyCode: SYMBVER + weightEnabled: true +- !SpeciesProtocol + id: d96c5577-94a6-436c-b0c2-3723a418b8bd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1739 + speciesSurveyCode: SYMPBAI + weightEnabled: true +- !SpeciesProtocol + id: 8c402c9f-a381-4616-a10b-a54294baff5a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1738 + speciesSurveyCode: SYMPMEO + weightEnabled: true +- !SpeciesProtocol + id: e065231b-64df-450d-bbc0-f6f1408dd271 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4424 + speciesSurveyCode: SYMPROI + weightEnabled: true +- !SpeciesProtocol + id: 7e1aba92-7f97-4628-ac47-bd3b638c0257 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1743 + speciesSurveyCode: SYMPROS + weightEnabled: true +- !SpeciesProtocol + id: 8863cf66-6d87-48d9-b172-cce5eccfc8a4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1479 + speciesSurveyCode: SYNAKAU + weightEnabled: true +- !SpeciesProtocol + id: 63b83df6-afeb-4000-b60b-f9aa8f6ebf8f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1500 + speciesSurveyCode: SYNGACU + weightEnabled: true +- !SpeciesProtocol + id: 53dceec6-facb-4f89-93c9-805ca0d0dc1b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1499 + speciesSurveyCode: SYNGNAZ + weightEnabled: true +- !SpeciesProtocol + id: 6638403d-ae6c-4839-bcf6-795f59426707 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1502 + speciesSurveyCode: SYNGROS + weightEnabled: true +- !SpeciesProtocol + id: e0bcd336-8db0-46c8-834b-1af09a5454a9 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1504 + speciesSurveyCode: SYNGTYP + weightEnabled: true +- !SpeciesProtocol + id: 415afc4d-b1d6-4d6e-9dd0-134a0fd5c5be + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4856 + speciesSurveyCode: TAANBAT + weightEnabled: true +- !SpeciesProtocol + id: 26147a1b-92e0-4b86-9881-81044da1aea7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 4027 + speciesSurveyCode: TALISMZ + weightEnabled: true +- !SpeciesProtocol + id: c6a51b1a-7958-475e-85a9-2857af6798f5 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 508 + speciesSurveyCode: TODAEBL + weightEnabled: true +- !SpeciesProtocol + id: 54e8569b-3e5b-4ac2-9c8f-edae0c3f72a3 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 509 + speciesSurveyCode: TODASAG + weightEnabled: true +- !SpeciesProtocol + id: b307d8fa-d2da-4e06-9bf5-1a85d16a06e7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1297 + speciesSurveyCode: TORPMAR + weightEnabled: true +- !SpeciesProtocol + id: 8259cca3-ec1d-4f0c-8ee1-74fcc975c18d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1298 + speciesSurveyCode: TORPNOB + weightEnabled: true +- !SpeciesProtocol + id: f0e90f53-471a-4b89-b43a-2d46383f27ac + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1906 + speciesSurveyCode: TRACCRI + weightEnabled: true +- !SpeciesProtocol + id: 8961639a-ebc4-4201-a3e2-c1f81bb1590d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1759 + speciesSurveyCode: TRACDRA + weightEnabled: true +- !SpeciesProtocol + id: eefa816a-6c02-421e-ba79-18601e08f4a7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1663 + speciesSurveyCode: TRACMED + weightEnabled: true +- !SpeciesProtocol + id: c87327db-5058-4df5-a412-48a5220ae879 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1664 + speciesSurveyCode: TRACPIC + weightEnabled: true +- !SpeciesProtocol + id: d6fe4925-a289-4888-b7f7-c5387199ee2e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1525 + speciesSurveyCode: TRACTRC + weightEnabled: true +- !SpeciesProtocol + id: dc5738bb-ed38-4814-a016-9fabfd833212 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1662 + speciesSurveyCode: TRACTRU + weightEnabled: true +- !SpeciesProtocol + id: 9ddedc54-f40e-4d7e-ad45-85375838f81a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1922 + speciesSurveyCode: TRIGLAS + weightEnabled: true +- !SpeciesProtocol + id: dd6b1cc2-ccd6-413c-b141-332a5a53491f + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1921 + speciesSurveyCode: TRIGLUC + weightEnabled: true +- !SpeciesProtocol + id: b25c2425-d402-4e02-a5fb-2bddc2a4efa3 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1910 + speciesSurveyCode: TRIGLYR + weightEnabled: true +- !SpeciesProtocol + id: 43c8131c-9e5d-47b0-9fa3-8552b50caef7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1559 + speciesSurveyCode: TRISESM + weightEnabled: true +- !SpeciesProtocol + id: 9650b6a8-4f82-463d-8993-651af5b58c80 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1560 + speciesSurveyCode: TRISLUS + weightEnabled: true +- !SpeciesProtocol + id: 162b5837-02c7-4ed4-bcd2-94fcd48f8479 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1558 + speciesSurveyCode: TRISMIN + weightEnabled: true +- !SpeciesProtocol + id: 4b5b43a1-384e-4e6c-b5cb-cadae9586c18 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1683 + speciesSurveyCode: UMBRCAN + weightEnabled: true +- !SpeciesProtocol + id: 0544a26e-9627-4ba0-a04d-8ee8f5dff502 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1346 + speciesSurveyCode: XENOCOP + weightEnabled: true +- !SpeciesProtocol + id: b5a13312-14ea-4dc0-9c0b-58d01f2f0b56 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1781 + speciesSurveyCode: XIPHGLA + weightEnabled: true +- !SpeciesProtocol + id: 581f5072-4bb0-4a51-a709-7a3b761a42be + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1966 + speciesSurveyCode: ZEUGPUN + weightEnabled: true +- !SpeciesProtocol + id: 3223b3e1-a0f3-4c26-b16b-1cb18a8aece0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: [] + speciesReferenceTaxonId: 1619 + speciesSurveyCode: ZEUSFAB + weightEnabled: true +vesselUseFeaturePmfmId: +- 173 +- 194 +- 230 +- 782 +- 843 +- 844 +- 846 +- 847 +- 848 +- 849 +- 850 +- 851 +- 857 +- 858 +- 859 +- 861 +- 862 +- 863 +- 881 +- 882 +- 883 Property changes on: trunk/tutti-service/src/test/resources/pupitri/ano-3898.tuttiProtocol ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Modified: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/common.css =================================================================== --- trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/common.css 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/common.css 2013-12-10 21:47:43 UTC (rev 1461) @@ -1,3 +1,26 @@ +/* + * #%L + * Tutti :: Service + * $Id$ + * $HeadURL$ + * %% + * Copyright (C) 2012 - 2013 Ifremer + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ /** * ================================================= * GENERAL @@ -148,7 +171,7 @@ /** * ------------------------------------------------- - * Styles particuliers (� appliquer de mani�re explicite dans le rapport) + * Styles particuliers (� appliquer de mani�re explicite dans le rapport) * ------------------------------------------------- */ .grid-contacts { @@ -236,7 +259,7 @@ /** * ------------------------------------------------- - * Styles particuliers (� appliquer de mani�re explicite dans le rapport) + * Styles particuliers (� appliquer de mani�re explicite dans le rapport) * ------------------------------------------------- */ Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/common.css ___________________________________________________________________ Modified: svn:keywords - Author Date Id Revision + Author Date Id Revision HeadURL Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/images/logo-ifremer.PNG ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Modified: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/common.js =================================================================== --- trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/common.js 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/common.js 2013-12-10 21:47:43 UTC (rev 1461) @@ -1,3 +1,26 @@ +/* + * #%L + * Tutti :: Service + * $Id$ + * $HeadURL$ + * %% + * Copyright (C) 2012 - 2013 Ifremer + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ /* =================================================================== * common.js * ------------------------------------------------------------------- Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/common.js ___________________________________________________________________ Modified: svn:keywords - Author Date Id Revision + Author Date Id Revision HeadURL Modified: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/messages.js =================================================================== --- trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/messages.js 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/messages.js 2013-12-10 21:47:43 UTC (rev 1461) @@ -1,3 +1,26 @@ +/* + * #%L + * Tutti :: Service + * $Id$ + * $HeadURL$ + * %% + * Copyright (C) 2012 - 2013 Ifremer + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ /* =================================================================== * message.js * ------------------------------------------------------------------- Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/messages.js ___________________________________________________________________ Modified: svn:keywords - Author Date Id Revision + Author Date Id Revision HeadURL Modified: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/common.properties =================================================================== --- trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/common.properties 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/common.properties 2013-12-10 21:47:43 UTC (rev 1461) @@ -1,3 +1,26 @@ +### +# #%L +# Tutti :: Service +# $Id$ +# $HeadURL$ +# %% +# Copyright (C) 2012 - 2013 Ifremer +# %% +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public +# License along with this program. If not, see +# <http://www.gnu.org/licenses/gpl-3.0.html>. +# #L% +### annee = Ann\u00E9e : Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/common.properties ___________________________________________________________________ Modified: svn:keywords - Author Date Id Revision + Author Date Id Revision HeadURL Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/reports/controle_data_allegro_campagne.rptdesign ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/version.appup ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-service/src/test/resources/report/exportCruise/accidentalCatch.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-service/src/test/resources/report/exportCruise/catch.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-service/src/test/resources/report/exportCruise/gearCaracteristics.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-service/src/test/resources/report/exportCruise/individualObservation.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-service/src/test/resources/report/exportCruise/marineLitter.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-service/src/test/resources/report/exportCruise/operation.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-service/src/test/resources/report/exportCruise/parameter.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-service/src/test/resources/report/exportCruise/species.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-service/src/test/resources/report/exportCruise/survey.csv ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Property changes on: trunk/tutti-ui-swing/src/main/assembly/full/report/version.appup ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision HeadURL Added: svn:eol-style + native Modified: trunk/tutti-ui-swing/src/main/help/en/report.html =================================================================== --- trunk/tutti-ui-swing/src/main/help/en/report.html 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-ui-swing/src/main/help/en/report.html 2013-12-10 21:47:43 UTC (rev 1461) @@ -1,3 +1,26 @@ +<!-- + #%L + Tutti :: UI + $Id$ + $HeadURL$ + %% + Copyright (C) 2012 - 2013 Ifremer + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + #L% + --> <!DOCTYPE html> <html lang="en"> Property changes on: trunk/tutti-ui-swing/src/main/help/en/report.html ___________________________________________________________________ Modified: svn:keywords - Author Date Id Revision + Author Date Id Revision HeadURL Modified: trunk/tutti-ui-swing/src/main/help/fr/report.html =================================================================== --- trunk/tutti-ui-swing/src/main/help/fr/report.html 2013-12-10 18:52:55 UTC (rev 1460) +++ trunk/tutti-ui-swing/src/main/help/fr/report.html 2013-12-10 21:47:43 UTC (rev 1461) @@ -1,3 +1,26 @@ +<!-- + #%L + Tutti :: UI + $Id$ + $HeadURL$ + %% + Copyright (C) 2012 - 2013 Ifremer + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program. If not, see + <http://www.gnu.org/licenses/gpl-3.0.html>. + #L% + --> <!DOCTYPE html> <html lang="fr"> Property changes on: trunk/tutti-ui-swing/src/main/help/fr/report.html ___________________________________________________________________ Modified: svn:keywords - Author Date Id Revision + Author Date Id Revision HeadURL
participants (1)
-
tchemit@users.forge.codelutin.com