This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository tutti. See http://git.codelutin.com/tutti.git commit 23e84a3e5b499bd54009af2ed72334d6d7d61679 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Sep 19 10:57:02 2015 +0200 Ajout d'un test pour valider l'import BigFin --- .../entities/data/SpeciesAbleBatchs.java | 16 +- .../service/bigfin/BigfinImportService2Test.java | 168 +- .../resources/bigfin/importbigfin2.tuttiProtocol | 4714 ++++++++++++++++++++ 3 files changed, 4893 insertions(+), 5 deletions(-) diff --git a/tutti-persistence/src/main/java/fr/ifremer/tutti/persistence/entities/data/SpeciesAbleBatchs.java b/tutti-persistence/src/main/java/fr/ifremer/tutti/persistence/entities/data/SpeciesAbleBatchs.java index 5277c3d..b8768dc 100644 --- a/tutti-persistence/src/main/java/fr/ifremer/tutti/persistence/entities/data/SpeciesAbleBatchs.java +++ b/tutti-persistence/src/main/java/fr/ifremer/tutti/persistence/entities/data/SpeciesAbleBatchs.java @@ -73,7 +73,7 @@ public class SpeciesAbleBatchs { } - public static <B extends SpeciesAbleBatch> List<B> getChildBatchs(B batch) { + public static <B extends SpeciesAbleBatch> List<B> getChildBatchs(B batch) { return (List<B>) batch.getChildBatchs(); } @@ -106,6 +106,20 @@ public class SpeciesAbleBatchs { } + public static <B extends SpeciesAbleBatch> void grabSampleCategorieValuesChildBatchs(B batch, Set<Integer> categoryIds) { + + CaracteristicQualitativeValue sampleCategoryValue = (CaracteristicQualitativeValue) batch.getSampleCategoryValue(); + + categoryIds.add(sampleCategoryValue.getIdAsInt()); + if (!batch.isChildBatchsEmpty()) { + for (SpeciesAbleBatch child : batch.getChildBatchs()) { + grabSampleCategorieValuesChildBatchs(child, categoryIds); + } + } + + + } + public static class SpeciesAbleBatchCategoryPredicate implements Predicate<SpeciesAbleBatch> { diff --git a/tutti-service/src/test/java/fr/ifremer/tutti/service/bigfin/BigfinImportService2Test.java b/tutti-service/src/test/java/fr/ifremer/tutti/service/bigfin/BigfinImportService2Test.java index 9c6d870..0eec620 100644 --- a/tutti-service/src/test/java/fr/ifremer/tutti/service/bigfin/BigfinImportService2Test.java +++ b/tutti-service/src/test/java/fr/ifremer/tutti/service/bigfin/BigfinImportService2Test.java @@ -30,6 +30,8 @@ import com.google.common.collect.Lists; import com.google.common.io.Files; import fr.ifremer.adagio.core.dao.referential.pmfm.PmfmId; import fr.ifremer.adagio.core.dao.referential.pmfm.QualitativeValueId; +import fr.ifremer.tutti.persistence.entities.TuttiEntities; +import fr.ifremer.tutti.persistence.entities.data.BatchContainer; import fr.ifremer.tutti.persistence.entities.data.CatchBatch; import fr.ifremer.tutti.persistence.entities.data.CatchBatchs; import fr.ifremer.tutti.persistence.entities.data.Cruise; @@ -39,6 +41,7 @@ import fr.ifremer.tutti.persistence.entities.data.FishingOperations; import fr.ifremer.tutti.persistence.entities.data.SpeciesAbleBatch; import fr.ifremer.tutti.persistence.entities.data.SpeciesAbleBatchs; import fr.ifremer.tutti.persistence.entities.data.SpeciesBatch; +import fr.ifremer.tutti.persistence.entities.data.SpeciesBatchFrequency; import fr.ifremer.tutti.persistence.entities.data.SpeciesBatchs; import fr.ifremer.tutti.persistence.entities.referential.Caracteristic; import fr.ifremer.tutti.persistence.entities.referential.CaracteristicQualitativeValue; @@ -58,7 +61,10 @@ import org.nuiton.util.DateUtil; import java.io.File; import java.io.IOException; +import java.util.LinkedHashSet; import java.util.List; +import java.util.Map; +import java.util.Set; /** * Created on 3/9/15. @@ -90,13 +96,10 @@ public class BigfinImportService2Test { public static final String OPERATION_1_ID = "1"; - public static final String OPERATION_2_ID = "2"; - - public static final String OPERATION_3_ID = "0"; - @Before public void setUp() throws Exception { + dbResource.setUseLegacyPersonDepartement(false); dataDirectory = dbResource.getConfig().getDataDirectory(); TuttiServiceContext serviceContext = dbResource.getServiceContext(); @@ -212,4 +215,161 @@ public class BigfinImportService2Test { } } + + @Test + public void testSpeciesWithNoneAndUnknownedSex() throws IOException { + + // Load protocol + + dbResource.loadInternalProtocolFile("bigfin/", "importbigfin2"); + + Species tracTruSpecies = persistenceService.getSpeciesByReferenceTaxonId(1662); + Assert.assertNotNull(tracTruSpecies); + Species tracDraSpecies = persistenceService.getSpeciesByReferenceTaxonId(1759); + Assert.assertNotNull(tracDraSpecies); + Species rajaClaSpecies = persistenceService.getSpeciesByReferenceTaxonId(1302); + Assert.assertNotNull(rajaClaSpecies); + Species trigLyrSpecies = persistenceService.getSpeciesByReferenceTaxonId(1910); + Assert.assertNotNull(trigLyrSpecies); + + Caracteristic sizeCaracteristic = persistenceService.getSizeCategoryCaracteristic(); + Assert.assertNotNull(sizeCaracteristic); + Map<String, CaracteristicQualitativeValue> sizeQualitativeValues = TuttiEntities.splitById(sizeCaracteristic.getQualitativeValue()); + + Caracteristic sexCaracteristic = persistenceService.getSexCaracteristic(); + Assert.assertNotNull(sexCaracteristic); + Map<String, CaracteristicQualitativeValue> sexQualitativeValues = TuttiEntities.splitById(sexCaracteristic.getQualitativeValue()); + + // Create cruise + + Cruise cruise = Cruises.newCruise(); + cruise.setName("MyCruise2"); + cruise.setMultirigNumber(1); + cruise.setBeginDate(DateUtil.createDate(1, 9, 2014)); + cruise.setEndDate(DateUtil.createDate(30, 9, 2014)); + TuttiLocation harbour = persistenceService.getAllHarbour().get(0); + cruise.setDepartureLocation(harbour); + cruise.setReturnLocation(harbour); + cruise.setProgram(dataContext.program); + cruise.setVessel(persistenceService.getAllScientificVessel().get(0)); + cruise.setHeadOfMission(Lists.newArrayList(persistenceService.getAllPerson().get(0))); + + cruise = persistenceService.createCruise(cruise); + + // Create empty fishing operation + FishingOperation fishingOperation = FishingOperations.newFishingOperation(); + fishingOperation.setCruise(cruise); + fishingOperation.setFishingOperationNumber(1); + fishingOperation.setStationNumber("A"); + fishingOperation.setGearShootingStartDate(DateUtil.createDate(14, 9, 2015)); + fishingOperation.setGearShootingEndDate(DateUtil.createDate(14, 9, 2015)); + fishingOperation = persistenceService.createFishingOperation(fishingOperation); + + CatchBatch catchBatch = CatchBatchs.newCatchBatch(); + catchBatch.setFishingOperation(fishingOperation); + + persistenceService.createCatchBatch(catchBatch); + + { + String fileContent = "Study name,ID,Date,LOC,STA,COMMENT,GPS X,GPS Y,SP CODE,SPEC,LENGTH (mm),WEIGHT (g),SEX,SIZE,MT,MS\n" + + "Test, 1,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,TRAC-TRU,200, ,None, 2,None,\n" + + "Test, 2,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,TRAC-TRU,201, ,None, 1,None,\n" + + "Test, 3,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,TRAC-TRU,202, ,None, 1,None,\n" + + "Test, 4,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,TRAC-TRU,203, ,None, 1,None,\n" + + "Test, 5,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,tracdra, 204, ,None, 0,None,\n" + + "Test, 6,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,tracdra, 205, ,Male, 0,None,\n" + + "Test, 7,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,tracdra, 206, ,Female, 0,None,\n" + + "Test, 8,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,tracdra, 207, ,Unknown,0,None,\n" + + "Test,14,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,rajacla, 213, ,Female, 0,None,\n" + + "Test,15,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,rajacla, 214, ,Female, 0,None,\n" + + "Test,16,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,rajacla, 215, ,Male, 0,None,\n" + + "Test,17,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,rajacla, 216, ,Female, 0,None,\n" + + "Test,18,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,rajacla, 217, ,Female, 0,None,\n" + + "Test,18,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,triglyr, 500,1000,None, 0,None,\n" + + "Test,18,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,triglyr, 510, ,None, 0,None,\n" + + "Test,18,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,triglyr, 520, ,None, 0,None,\n" + + "Test,18,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,triglyr, 530, ,None, 0,None,\n" + + "Test,18,09/14/15 09:49:32,,A,,47.24713560992085,-1.5474773011082363,,triglyr, 500, ,None, 0,None,"; + + File importFile = dbResource.getConfig().newTempFile("bigFin1"); + Files.write(fileContent, importFile, Charsets.UTF_8); + + BigfinImportResult importResult = service.importFile(importFile, fishingOperation, catchBatch); + + int nbFrequenciesAdded = importResult.getNbFrequenciesImported(); + List<String> errors = importResult.getErrors(); + List<String> warnings = importResult.getWarnings(); + + if (log.isInfoEnabled()) { + log.info("Frequencies Imported: " + nbFrequenciesAdded); + log.info("Errors: " + errors.size()); + log.info("Warnings: " + warnings.size()); + } + + int nbNewFrequencies = 18; + Assert.assertEquals(nbNewFrequencies, nbFrequenciesAdded); + Assert.assertEquals(0, errors.size()); + Assert.assertEquals(0, warnings.size()); + + BatchContainer<SpeciesBatch> rootSpeciesBatch = persistenceService.getRootSpeciesBatch(fishingOperation.getId(), false); + Assert.assertNotNull(rootSpeciesBatch); + Assert.assertEquals(4, rootSpeciesBatch.sizeChildren()); + + Set<Species> speciesSet = new LinkedHashSet<>(); + SpeciesAbleBatchs.grabSpeciesChildBatchs(rootSpeciesBatch.getChildren(), speciesSet); + Assert.assertEquals(4, speciesSet.size()); + Assert.assertTrue(speciesSet.contains(rajaClaSpecies)); + Assert.assertTrue(speciesSet.contains(tracDraSpecies)); + Assert.assertTrue(speciesSet.contains(tracTruSpecies)); + Assert.assertTrue(speciesSet.contains(trigLyrSpecies)); + + for (SpeciesBatch speciesBatch : rootSpeciesBatch.getChildren()) { + + Set<Integer> sampleCategories = new LinkedHashSet<>(); + SpeciesAbleBatchs.grabSampleCategorieValuesChildBatchs(speciesBatch, sampleCategories); + List<SpeciesBatchFrequency> allSpeciesBatchFrequency = persistenceService.getAllSpeciesBatchFrequency(speciesBatch.getId()); + + if (rajaClaSpecies.equals(speciesBatch.getSpecies())) { + + // 2 catégories Male, Femelle + Vrac + Assert.assertEquals(2, speciesBatch.getChildBatchs().size()); + Assert.assertEquals(3, sampleCategories.size()); + Assert.assertTrue(sampleCategories.contains(311)); // Vrac + Assert.assertTrue(sampleCategories.contains(300)); // M + Assert.assertTrue(sampleCategories.contains(301)); // F + Assert.assertEquals(0, allSpeciesBatchFrequency.size()); + } else if (tracTruSpecies.equals(speciesBatch.getSpecies())) { + + // 2 categories Gros et Petit + Assert.assertEquals(2, speciesBatch.getChildBatchs().size()); + Assert.assertEquals(3, sampleCategories.size()); + Assert.assertTrue(sampleCategories.contains(305)); // G + Assert.assertTrue(sampleCategories.contains(307)); // P + Assert.assertEquals(0, allSpeciesBatchFrequency.size()); + } else if (tracDraSpecies.equals(speciesBatch.getSpecies())) { + + // 4 catégories Non sexe, Male, Femelle et Sexe inconnu + Vrac + Assert.assertEquals(4, speciesBatch.getChildBatchs().size()); + Assert.assertEquals(5, sampleCategories.size()); + Assert.assertTrue(sampleCategories.contains(311)); // Vrac + Assert.assertTrue(sampleCategories.contains(299)); // U + Assert.assertTrue(sampleCategories.contains(300)); // M + Assert.assertTrue(sampleCategories.contains(301)); // F + Assert.assertTrue(sampleCategories.contains(302)); // N + Assert.assertEquals(0, allSpeciesBatchFrequency.size()); + } else if (trigLyrSpecies.equals(speciesBatch.getSpecies())) { + + //FIXME Changer ce test quand on aura intégrer l'évolution 7637 + // Pas de catégorie + Assert.assertEquals(0, speciesBatch.getChildBatchs().size()); + Assert.assertEquals(1, sampleCategories.size()); + Assert.assertTrue(sampleCategories.contains(311)); // Vrac + Assert.assertEquals(4, allSpeciesBatchFrequency.size()); + } + } + + + } + + } } diff --git a/tutti-service/src/test/resources/bigfin/importbigfin2.tuttiProtocol b/tutti-service/src/test/resources/bigfin/importbigfin2.tuttiProtocol new file mode 100644 index 0000000..824cab7 --- /dev/null +++ b/tutti-service/src/test/resources/bigfin/importbigfin2.tuttiProtocol @@ -0,0 +1,4714 @@ +id: 3d89f16e-2a47-4402-b643-be601a31eb34 +name: Protocole EVHOE 2015 +benthos: +- !SpeciesProtocol + id: 8d36df0e-4e92-4fae-b0cc-16c7e66b86ed + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7 + speciesSurveyCode: MBPORIF + weightEnabled: true +- !SpeciesProtocol + id: f06f5a83-3dc3-45ff-9cc7-a35db6deb7ca + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6129 + speciesSurveyCode: AXININF + weightEnabled: true +- !SpeciesProtocol + id: 63afd9b2-1bea-4dee-ba8c-a826e1af959e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4656 + speciesSurveyCode: SUBEFIC + weightEnabled: true +- !SpeciesProtocol + id: 0d521d61-4e91-42e6-bbfa-47d51c42fda2 + speciesReferenceTaxonId: 12027 + speciesSurveyCode: DESMFRU + weightEnabled: true +- !SpeciesProtocol + id: a5fd3aa9-c4e4-4ce0-a1f2-51e377d60569 + speciesReferenceTaxonId: 12 + speciesSurveyCode: CLHYDRZ + weightEnabled: true +- !SpeciesProtocol + id: fd71877e-bd32-4fff-b446-cb533640b46e + speciesReferenceTaxonId: 4622 + speciesSurveyCode: ABIEABI + weightEnabled: true +- !SpeciesProtocol + id: a0553363-b8f4-4ee1-9bfb-37fb2b451c3d + speciesReferenceTaxonId: 4685 + speciesSurveyCode: HYDAFAL + weightEnabled: true +- !SpeciesProtocol + id: 96f45387-d9dd-4df0-94fc-a755a10bf9c8 + speciesReferenceTaxonId: 4682 + speciesSurveyCode: NEMEANT + weightEnabled: true +- !SpeciesProtocol + id: 1ded8dfd-60f0-4c31-840b-651cbae3fea0 + speciesReferenceTaxonId: 4667 + speciesSurveyCode: NEMERAM + weightEnabled: true +- !SpeciesProtocol + id: 31cc9ffe-20fc-47dc-a4c1-c8c67d81a41d + speciesReferenceTaxonId: 4736 + speciesSurveyCode: HLECHAL + weightEnabled: true +- !SpeciesProtocol + id: f16a8aef-cc9c-4913-a9be-f05e8ef41e9a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 131 + speciesSurveyCode: CLANTHO + weightEnabled: true +- !SpeciesProtocol + id: cac4db2b-b0b3-40a6-9f74-9c50ed833af9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4386 + speciesSurveyCode: ALCYGLO + weightEnabled: true +- !SpeciesProtocol + id: 2898a143-5073-4a08-aa34-9ca21c8d96d1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3021 + speciesSurveyCode: ALCYDIG + weightEnabled: true +- !SpeciesProtocol + id: e5a86b41-246a-4c10-b84b-d25c5676a5f5 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6804 + speciesSurveyCode: FUNIQUA + weightEnabled: true +- !SpeciesProtocol + id: b3b72f8b-81d0-4e98-958b-3d107a2fb9d1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 134 + speciesSurveyCode: PENNPHO + weightEnabled: true +- !SpeciesProtocol + id: 85cca139-c860-45f3-b7d3-3a5f13b69357 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3006 + speciesSurveyCode: PRTOGRI + weightEnabled: true +- !SpeciesProtocol + id: 6c583529-d166-4c60-939d-39979d53ac12 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2224 + speciesSurveyCode: ORACTIN + weightEnabled: true +- !SpeciesProtocol + id: fe0385f9-29d5-4726-a033-934a6ef46686 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4734 + speciesSurveyCode: URTIEQU + weightEnabled: true +- !SpeciesProtocol + id: f5ed6a4a-c0a1-46f1-ba03-871b94a15c20 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4623 + speciesSurveyCode: ACTU + weightEnabled: true +- !SpeciesProtocol + id: 167862ed-650d-4a55-84dd-9d5aac09f047 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4626 + speciesSurveyCode: ADAMCAR + weightEnabled: true +- !SpeciesProtocol + id: 4f181e75-57b7-45f1-983d-d00a6ba4f774 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4378 + speciesSurveyCode: CLLCPAR + weightEnabled: true +- !SpeciesProtocol + id: 5da0b2d0-8d1e-4209-a22d-8e4f79e57120 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4412 + speciesSurveyCode: METRSEN + weightEnabled: true +- !SpeciesProtocol + id: db64ebb2-1ec0-4f50-b1e2-1637a94c6c28 + speciesReferenceTaxonId: 4731 + speciesSurveyCode: ORSCLER + weightEnabled: true +- !SpeciesProtocol + id: 55c2aeb1-a4ba-4d7e-97e8-8a3496a2a903 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4385 + speciesSurveyCode: CAROSMI + weightEnabled: true +- !SpeciesProtocol + id: d75ee35b-bf05-457e-9f2f-84c234cc1606 + speciesReferenceTaxonId: 7230 + speciesSurveyCode: MADROCU + weightEnabled: true +- !SpeciesProtocol + id: 455cc4ff-5ff4-4fd6-82bb-692be11a3428 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4418 + speciesSurveyCode: EPZAINC + weightEnabled: true +- !SpeciesProtocol + id: aab52d5f-cd08-4feb-99e2-9dc524608cd7 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7327 + speciesSurveyCode: EPZAPAG + weightEnabled: true +- !SpeciesProtocol + id: 18590b15-3031-473a-a8ef-ede338532937 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 142 + speciesSurveyCode: MBNEMRT + weightEnabled: true +- !SpeciesProtocol + id: 236d6905-f332-4c00-9721-4deab5737905 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 145 + speciesSurveyCode: MBSIPUN + weightEnabled: true +- !SpeciesProtocol + id: ebe371b9-cf90-4f87-83e7-1261f2bd3c6c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 147 + speciesSurveyCode: SIPSNUD + weightEnabled: true +- !SpeciesProtocol + id: 5cb27749-46d0-44a6-89f1-c72bf3caad33 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 150 + speciesSurveyCode: MBANNEL + weightEnabled: true +- !SpeciesProtocol + id: 51046477-8f8d-4965-ac39-30c2ba597f80 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 155 + speciesSurveyCode: APHRACU + weightEnabled: true +- !SpeciesProtocol + id: 7aadeea5-1bec-4d3f-8f24-c60050b02db9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4298 + speciesSurveyCode: LAET + weightEnabled: true +- !SpeciesProtocol + id: 4562448b-de70-4bec-a95f-f8c22e66a756 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3240 + speciesSurveyCode: DIOPNEA + weightEnabled: true +- !SpeciesProtocol + id: 4613bc0b-ad15-415e-a037-0fce480fd171 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3241 + speciesSurveyCode: HYALTUB + weightEnabled: true +- !SpeciesProtocol + id: 263dcc55-98ba-4a88-86e6-9c6f62917a92 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7125 + speciesSurveyCode: FMCHAEO + weightEnabled: true +- !SpeciesProtocol + id: 59135cb6-ebb4-450d-b3a2-a79dd1b7205c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 211 + speciesSurveyCode: STERSCU + weightEnabled: true +- !SpeciesProtocol + id: d1f99551-52ec-4257-8cdc-e0624fd5f70e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 156 + speciesSurveyCode: OWENFUS + weightEnabled: true +- !SpeciesProtocol + id: 803adc90-0d66-4817-93e6-2c42b2cb50e8 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 203 + speciesSurveyCode: LANICON + weightEnabled: true +- !SpeciesProtocol + id: 32edb779-4fb6-4557-95c1-ddfb3d85b2fa + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3032 + speciesSurveyCode: FMSABED + weightEnabled: true +- !SpeciesProtocol + id: aefb68c4-aa38-40f2-ab3c-decc315d323a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 209 + speciesSurveyCode: FMSERPU + weightEnabled: true +- !SpeciesProtocol + id: 0efd57a3-78d4-4fbf-a36d-aa56773ab7b9 + speciesReferenceTaxonId: 224 + speciesSurveyCode: MBBRYOZ + weightEnabled: true +- !SpeciesProtocol + id: b156dae2-7b88-4709-98c7-23c9b08d028c + speciesReferenceTaxonId: 6222 + speciesSurveyCode: FMPHIDO + weightEnabled: true +- !SpeciesProtocol + id: 2395b690-d950-400f-a030-ccf8a9bee8a4 + speciesReferenceTaxonId: 6669 + speciesSurveyCode: PENPFAS + weightEnabled: true +- !SpeciesProtocol + id: e6c40b05-8c90-421d-9da9-781780e1b813 + speciesReferenceTaxonId: 4762 + speciesSurveyCode: CELL + weightEnabled: true +- !SpeciesProtocol + id: 21e34745-a6ac-40a4-a74c-927e019ae021 + speciesReferenceTaxonId: 3549 + speciesSurveyCode: FLUTFOL + weightEnabled: true +- !SpeciesProtocol + id: c59384b9-b800-4e98-b196-572d6b535d2c + speciesReferenceTaxonId: 3974 + speciesSurveyCode: ALCD + weightEnabled: true +- !SpeciesProtocol + id: 5fc8f39c-bdda-4389-a083-a11165bb0818 + speciesReferenceTaxonId: 4766 + speciesSurveyCode: PORECOM + weightEnabled: true +- !SpeciesProtocol + id: 41f8e604-2a7c-4b4b-a641-924f632a9bc0 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3669 + speciesSurveyCode: MBBRACH + weightEnabled: true +- !SpeciesProtocol + id: f8f70b42-6eba-4ef5-804f-e060bdb96d61 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3671 + speciesSurveyCode: GRYPVIT + weightEnabled: true +- !SpeciesProtocol + id: 48a083be-5f98-43ec-b3d3-59ea991b1f14 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3670 + speciesSurveyCode: MEGETRU + weightEnabled: true +- !SpeciesProtocol + id: f5bad669-cb14-48a4-a52a-bc9545f987f5 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 226 + speciesSurveyCode: CLGASTE + weightEnabled: true +- !SpeciesProtocol + id: 9e864ac1-cd58-4d82-911c-aecf0c8749be + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 246 + speciesSurveyCode: CALSGRA + weightEnabled: true +- !SpeciesProtocol + id: 05f20fc2-1032-47a1-bbec-a5141a73272e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 247 + speciesSurveyCode: CALSZIZ + weightEnabled: true +- !SpeciesProtocol + id: 841cd3f6-0645-4463-834c-2066d8ec9c09 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 250 + speciesSurveyCode: TURRCOM + weightEnabled: true +- !SpeciesProtocol + id: 1833b6d3-c3bb-426b-923f-4dc716f9d272 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 261 + speciesSurveyCode: APORPES + weightEnabled: true +- !SpeciesProtocol + id: ce2a426c-9589-4a5f-9754-4daf4a1a7b47 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 262 + speciesSurveyCode: APORSER + weightEnabled: true +- !SpeciesProtocol + id: a06660ed-4f72-4fe0-ab87-ca3df130a557 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 267 + speciesSurveyCode: CALYCHI + weightEnabled: true +- !SpeciesProtocol + id: 56f87193-c9f8-4d15-a6f8-34ffedfb8635 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 268 + speciesSurveyCode: CREPFOR + weightEnabled: true +- !SpeciesProtocol + id: 2abfbe49-de16-47d5-ab4f-9e773287b0bb + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6263 + speciesSurveyCode: CAPUUNG + weightEnabled: true +- !SpeciesProtocol + id: bf4c96f9-e971-44dd-a07e-571907533d1b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7104 + speciesSurveyCode: LAMEPER + weightEnabled: true +- !SpeciesProtocol + id: b2ce02b0-3258-474c-a90c-27db6f954fe9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 276 + speciesSurveyCode: EUSPCAT + weightEnabled: true +- !SpeciesProtocol + id: ab1bbb60-c34c-4425-8509-2ee1142e35af + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 277 + speciesSurveyCode: EUSPFUS + weightEnabled: true +- !SpeciesProtocol + id: 1d98f218-1b2f-4304-b43b-7a0082571fe1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 281 + speciesSurveyCode: GALERUG + weightEnabled: true +- !SpeciesProtocol + id: b896ef98-fd79-4568-88eb-0b937862c7e8 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 287 + speciesSurveyCode: RANEOLE + weightEnabled: true +- !SpeciesProtocol + id: 5ac05e64-4c90-4d06-9613-42431850af94 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 293 + speciesSurveyCode: OCENERI + weightEnabled: true +- !SpeciesProtocol + id: dbf0bb29-2620-470d-8395-4dadfa5ed7dc + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 301 + speciesSurveyCode: BUCCHUM + weightEnabled: true +- !SpeciesProtocol + id: 721b5c7c-acd3-4a51-a607-01897580bbd4 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4253 + speciesSurveyCode: COLUGRA + weightEnabled: true +- !SpeciesProtocol + id: 13d96a91-a34a-4d53-b746-7b96044b7f19 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4405 + speciesSurveyCode: NEPUANT + weightEnabled: true +- !SpeciesProtocol + id: 01ea9972-58f6-4868-947c-f5b57f629c29 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 305 + speciesSurveyCode: NASSRET + weightEnabled: true +- !SpeciesProtocol + id: 12f0b54e-110e-4312-8e2f-6b119625448e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 317 + speciesSurveyCode: PHILAPE + weightEnabled: true +- !SpeciesProtocol + id: ea7995de-da9e-4010-ad7a-b056ff683082 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 318 + speciesSurveyCode: SCAHLIG + weightEnabled: true +- !SpeciesProtocol + id: 97d1dd01-076c-4a77-95b9-54018a85f46f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7098 + speciesSurveyCode: GATORUB + weightEnabled: true +- !SpeciesProtocol + id: c7204f0c-68b7-4941-9f78-1e3728134d51 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7486 + speciesSurveyCode: BERTPLU + weightEnabled: true +- !SpeciesProtocol + id: 08f05561-92da-47f2-89dd-92cd245cdb15 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4209 + speciesSurveyCode: PLBRMEM + weightEnabled: true +- !SpeciesProtocol + id: da160c36-9655-4839-a50e-3ee1dae3ece8 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3200 + speciesSurveyCode: APLY + weightEnabled: true +- !SpeciesProtocol + id: 1adbfc6e-2664-46c9-b69b-a7c061ef0d06 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 326 + speciesSurveyCode: DORSPSD + weightEnabled: true +- !SpeciesProtocol + id: da380aa4-596d-4e5d-bc46-526e0121fdbe + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2418 + speciesSurveyCode: JORUTOM + weightEnabled: true +- !SpeciesProtocol + id: 41a875c2-598b-43dc-af3a-a79dbb52c002 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 11779 + speciesSurveyCode: ROSARUB + weightEnabled: true +- !SpeciesProtocol + id: 1aeb9996-909c-4968-854a-ab7f3f5b3621 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7482 + speciesSurveyCode: KALORAM + weightEnabled: true +- !SpeciesProtocol + id: 5b971ce7-9d85-4b13-9cd2-062b69dff04c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6138 + speciesSurveyCode: DENRFRO + weightEnabled: true +- !SpeciesProtocol + id: 6f3ba29a-c27a-47df-89ea-19e71a6b4399 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 331 + speciesSurveyCode: ARMILOV + weightEnabled: true +- !SpeciesProtocol + id: 2e401adb-1439-4751-b4df-c7ba3f51a6b9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7481 + speciesSurveyCode: AOLL + weightEnabled: true +- !SpeciesProtocol + id: 736a7ea7-f9f0-4602-8bd3-aa25e7f1e9b0 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 336 + speciesSurveyCode: CLBIVAL + weightEnabled: true +- !SpeciesProtocol + id: 847f35a9-4233-4e4b-b428-800e635a5723 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 342 + speciesSurveyCode: GLYCGLY + weightEnabled: true +- !SpeciesProtocol + id: a72ca2b5-1aae-4dde-977d-bbc7f0400180 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 353 + speciesSurveyCode: ATRIPEC + weightEnabled: true +- !SpeciesProtocol + id: c2eada2c-5dd8-4fb9-bcd7-9008cb58fc0f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 355 + speciesSurveyCode: PTERHIR + weightEnabled: true +- !SpeciesProtocol + id: 45bd16fc-04c9-490b-bf1c-06daf67ddb04 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6139 + speciesSurveyCode: PALLTIG + weightEnabled: true +- !SpeciesProtocol + id: bb545231-272a-4cb2-a6f1-563971c026f9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3599 + speciesSurveyCode: PSMUCLA + weightEnabled: true +- !SpeciesProtocol + id: 28933f36-84e2-48dd-b8a2-913263e09fe9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4297 + speciesSurveyCode: PSMUPES + weightEnabled: true +- !SpeciesProtocol + id: f5650204-6f3e-4de8-996f-925e1b81785d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3608 + speciesSurveyCode: FMANOMI + weightEnabled: true +- !SpeciesProtocol + id: fcfe4a4f-cf95-4717-b5ee-1ca06b142e0e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3614 + speciesSurveyCode: NEOPCOC + weightEnabled: true +- !SpeciesProtocol + id: 77463d61-2b26-4a99-a598-e58d3a0c96f0 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4632 + speciesSurveyCode: ASTASUL + weightEnabled: true +- !SpeciesProtocol + id: e427db44-7e4a-436d-a81c-000a15125554 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 380 + speciesSurveyCode: ACANECH + weightEnabled: true +- !SpeciesProtocol + id: 6a88b48f-773e-4e06-84da-9ea43a1c4771 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 387 + speciesSurveyCode: LAEVCRA + weightEnabled: true +- !SpeciesProtocol + id: 4761c001-6244-4cf9-92f9-f8a355a79f7a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 394 + speciesSurveyCode: SPISELL + weightEnabled: true +- !SpeciesProtocol + id: 68c52509-8dd0-4550-b2ac-4cff0e33f917 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3643 + speciesSurveyCode: ARCOBAU + weightEnabled: true +- !SpeciesProtocol + id: 10e1a559-3814-49d5-b296-154631e2c4fe + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3646 + speciesSurveyCode: ARTCISL + weightEnabled: true +- !SpeciesProtocol + id: 27c7acdb-c7e2-48dd-9f47-e103a2df560e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 427 + speciesSurveyCode: GLOUHUM + weightEnabled: true +- !SpeciesProtocol + id: e2601701-008e-42e1-a885-241b054b172b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3015 + speciesSurveyCode: TIMCOVA + weightEnabled: true +- !SpeciesProtocol + id: f536153b-0ce1-447d-8c3c-dd65b6a1a0a6 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 440 + speciesSurveyCode: CALLCHI + weightEnabled: true +- !SpeciesProtocol + id: b408f84a-e4ff-4b21-894c-31d79caf8bb4 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 431 + speciesSurveyCode: VENUCAS + weightEnabled: true +- !SpeciesProtocol + id: f8ba1bd2-d5f8-4bdd-b6f7-a8077624d602 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6674 + speciesSurveyCode: XYLODOR + weightEnabled: true +- !SpeciesProtocol + id: 5fd9ce68-6ec9-47cc-a6db-4c6d84e81443 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 460 + speciesSurveyCode: CLSCAPH + weightEnabled: true +- !SpeciesProtocol + id: bbd18192-438c-4a84-81ea-cb947fbf3a9a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4397 + speciesSurveyCode: ANTA + weightEnabled: true +- !SpeciesProtocol + id: 56d50036-9827-45fb-94bf-fc4b2823f823 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 464 + speciesSurveyCode: CLCEPHA + weightEnabled: true +- !SpeciesProtocol + id: fc5a2914-02a5-4c58-a7e4-93b9e66b0cc5 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 528 + speciesSurveyCode: CLPYCNO + weightEnabled: true +- !SpeciesProtocol + id: 899eec20-7632-4659-a720-644ffc82b637 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4665 + speciesSurveyCode: PYCNLIT + weightEnabled: true +- !SpeciesProtocol + id: 54ea5f74-2f55-415a-aa19-8d45ab198c89 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 712 + speciesSurveyCode: ICCIRIP + weightEnabled: true +- !SpeciesProtocol + id: 915dfeb0-5d50-4418-84fc-0559255ea482 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 715 + speciesSurveyCode: SCALSCA + weightEnabled: true +- !SpeciesProtocol + id: 7b007c6c-21ab-47de-b63d-2082479f2fb7 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6839 + speciesSurveyCode: ORMYSID + weightEnabled: true +- !SpeciesProtocol + id: 4c5be71e-f568-4205-be35-c70431817478 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 829 + speciesSurveyCode: ORSTOMA + weightEnabled: true +- !SpeciesProtocol + id: 5c424a67-1128-4986-b5be-930b9118f32e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 833 + speciesSurveyCode: RISSDES + weightEnabled: true +- !SpeciesProtocol + id: bf9a4216-d939-4205-8430-8a64f2b13bbd + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 846 + speciesSurveyCode: SODENDR + weightEnabled: true +- !SpeciesProtocol + id: 6ca6eeae-1e15-4772-a704-45c026e58cb9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 855 + speciesSurveyCode: PAPELON + weightEnabled: true +- !SpeciesProtocol + id: 862aae8e-e665-4d39-b556-896526f84bb0 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 848 + speciesSurveyCode: ARISFOL + weightEnabled: true +- !SpeciesProtocol + id: 88a2734c-f2d4-4a2b-93ad-ffce8a2f7dd6 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4613 + speciesSurveyCode: ARIAEDW + weightEnabled: true +- !SpeciesProtocol + id: 8f58d402-2d7f-4db8-8c31-b292b3ce88bd + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 858 + speciesSurveyCode: SOLOMEM + weightEnabled: true +- !SpeciesProtocol + id: 9ba49c1a-e99b-4ba4-9a2d-2e77c8526422 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 862 + speciesSurveyCode: SRGIROB + weightEnabled: true +- !SpeciesProtocol + id: b58d0189-f6a2-4a89-b0a1-11a66f28c19c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 864 + speciesSurveyCode: IOCARID + weightEnabled: true +- !SpeciesProtocol + id: 91a677a0-eaa6-4825-8bb8-c6c8154981d9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 867 + speciesSurveyCode: PASIMUL + weightEnabled: true +- !SpeciesProtocol + id: afe0c2d6-3355-4858-96c9-884d7cae40fe + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 868 + speciesSurveyCode: PASISIV + weightEnabled: true +- !SpeciesProtocol + id: 707f3948-fa98-4f5c-86b8-18bdebe1fc6a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7329 + speciesSurveyCode: PASITAR + weightEnabled: true +- !SpeciesProtocol + id: 5bd94583-4af9-4386-a0a3-de5e3ce3f4ca + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 872 + speciesSurveyCode: ACAPPEL + weightEnabled: true +- !SpeciesProtocol + id: c80cfe66-afc1-48a1-9e9b-d53bec90b558 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6807 + speciesSurveyCode: SYSTDEB + weightEnabled: true +- !SpeciesProtocol + id: 71c22a57-e8d7-4f4f-9195-0c873440f8aa + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 920 + speciesSurveyCode: PALOSER + weightEnabled: true +- !SpeciesProtocol + id: 9becb30c-c107-4202-8d65-7a0847d761e6 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 907 + speciesSurveyCode: ALPHGLA + weightEnabled: true +- !SpeciesProtocol + id: 629c8ce9-9c24-441d-baed-4567b407f944 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4675 + speciesSurveyCode: SPITLIL + weightEnabled: true +- !SpeciesProtocol + id: 76071520-3acf-448e-af63-a353cb92f35c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 911 + speciesSurveyCode: PROC + weightEnabled: true +- !SpeciesProtocol + id: 7948f0a1-7c05-4ad1-bb89-4cc861455026 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 886 + speciesSurveyCode: CHLOCRA + weightEnabled: true +- !SpeciesProtocol + id: a7a88b71-7135-4548-80b7-36b2d1807329 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 878 + speciesSurveyCode: PANSMON + weightEnabled: true +- !SpeciesProtocol + id: a630926b-1d3c-408c-abfd-905bc7748c4d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3195 + speciesSurveyCode: DICHBON + weightEnabled: true +- !SpeciesProtocol + id: 71191a31-cc74-4195-9dd8-f514e3d4007e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7201 + speciesSurveyCode: ATLAPRO + weightEnabled: true +- !SpeciesProtocol + id: dffb4894-18e7-4313-ae4b-d2124e10608c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 883 + speciesSurveyCode: PLEKHET + weightEnabled: true +- !SpeciesProtocol + id: c75ea825-30a2-4e9d-aef5-25ba3c4a2d54 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 884 + speciesSurveyCode: PLEKMAR + weightEnabled: true +- !SpeciesProtocol + id: 0ee00f01-d341-4285-aad4-5ff0d7dece7c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 931 + speciesSurveyCode: CRAGCRA + weightEnabled: true +- !SpeciesProtocol + id: cf1667fa-dae1-4c8e-bccf-78ac960b8078 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 932 + speciesSurveyCode: CRAGALM + weightEnabled: true +- !SpeciesProtocol + id: cc942cf8-da40-4053-a214-43b00eef9cda + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 934 + speciesSurveyCode: PONPSPI + weightEnabled: true +- !SpeciesProtocol + id: 580741ab-a3cd-4ac6-919b-501b0dde21c7 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 941 + speciesSurveyCode: PHICECH + weightEnabled: true +- !SpeciesProtocol + id: bd0bcc55-f45e-41bb-bd6c-4acce7fc79fa + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 953 + speciesSurveyCode: POLCTYP + weightEnabled: true +- !SpeciesProtocol + id: abe9a08c-73b5-49b8-8a06-61d0e7d2324f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 962 + speciesSurveyCode: SCYLARC + weightEnabled: true +- !SpeciesProtocol + id: 89bfa6eb-8419-4e60-88cf-c2c7e3e2f2cd + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 966 + speciesSurveyCode: CALRMAC + weightEnabled: true +- !SpeciesProtocol + id: 0be2b866-03b2-4513-8f48-687af22e7052 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 971 + speciesSurveyCode: JAXENOC + weightEnabled: true +- !SpeciesProtocol + id: 1444d7b1-a9ec-48a1-8053-f636b1a4048e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7274 + speciesSurveyCode: UFGALAT + weightEnabled: true +- !SpeciesProtocol + id: c5f511c5-5591-4c82-8a9a-ff9452975e08 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1009 + speciesSurveyCode: GALA + weightEnabled: true +- !SpeciesProtocol + id: 887d54fb-3a0d-45d9-86e9-102234e3192b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1023 + speciesSurveyCode: PISILON + weightEnabled: true +- !SpeciesProtocol + id: 9520029f-b0e3-47cb-a06a-007a7806d688 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2167 + speciesSurveyCode: UFPAGUR + weightEnabled: true +- !SpeciesProtocol + id: 523d5557-d9e7-465e-a183-b7a220090eb7 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 987 + speciesSurveyCode: DIOGPUG + weightEnabled: true +- !SpeciesProtocol + id: b9f0b556-f526-4412-972d-d62aea79c23a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7330 + speciesSurveyCode: PRPGPIL + weightEnabled: true +- !SpeciesProtocol + id: 8e042b72-77ca-4459-b9b3-3092ab85afbe + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1005 + speciesSurveyCode: ANAPHYN + weightEnabled: true +- !SpeciesProtocol + id: 5de272e3-7c70-43b9-a5a1-c95349a440e4 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1007 + speciesSurveyCode: ANAPLAE + weightEnabled: true +- !SpeciesProtocol + id: 0dd42951-4ba5-47d7-86e3-8c0cba2b2c35 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 998 + speciesSurveyCode: PAGUALA + weightEnabled: true +- !SpeciesProtocol + id: 2073e62b-6dd6-4147-a0df-c8813de200b8 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 995 + speciesSurveyCode: PAGUBER + weightEnabled: true +- !SpeciesProtocol + id: e3245426-84b2-457c-ac72-c38f1ecfa305 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7270 + speciesSurveyCode: PAGUCAR + weightEnabled: true +- !SpeciesProtocol + id: b462f2a2-e068-418b-9b34-da6ef38b1ba6 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 997 + speciesSurveyCode: PAGUCUA + weightEnabled: true +- !SpeciesProtocol + id: 42317234-10c0-4422-bc36-4d5d97bc9230 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 999 + speciesSurveyCode: PAGUEXC + weightEnabled: true +- !SpeciesProtocol + id: 1f042cee-873a-4578-b2ab-54e2d2a99de5 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1000 + speciesSurveyCode: PAGUFOR + weightEnabled: true +- !SpeciesProtocol + id: 1459bea1-2782-41d0-98fd-5814c8d01cee + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 994 + speciesSurveyCode: PAGUPRI + weightEnabled: true +- !SpeciesProtocol + id: 641ace87-f1e8-47b1-ba26-6cb60669f03a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1026 + speciesSurveyCode: IOBRACY + weightEnabled: true +- !SpeciesProtocol + id: 36c04aed-991f-4c00-a87a-982eea222d44 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1119 + speciesSurveyCode: EURYASP + weightEnabled: true +- !SpeciesProtocol + id: 0fa1c85c-9318-4922-8ebb-241ebe31ebf1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1122 + speciesSurveyCode: ERGACLO + weightEnabled: true +- !SpeciesProtocol + id: dfc5bfac-53a2-4519-aa85-aaad86dc598a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1128 + speciesSurveyCode: INACDOR + weightEnabled: true +- !SpeciesProtocol + id: f6beb14c-9bcd-46e3-a81b-49e57452bdf0 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1126 + speciesSurveyCode: INACLEP + weightEnabled: true +- !SpeciesProtocol + id: a6c17031-c2e6-43b3-a4f6-98a7ac55dc6c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1131 + speciesSurveyCode: MACR + weightEnabled: true +- !SpeciesProtocol + id: b71364c8-712c-46f6-bcdd-4d29962feeb5 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1135 + speciesSurveyCode: MACRTEN + weightEnabled: true +- !SpeciesProtocol + id: 7d778011-eee9-4a9a-b126-31686d527b10 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1038 + speciesSurveyCode: EBALTUB + weightEnabled: true +- !SpeciesProtocol + id: ec1865da-6397-4601-ad11-cefde908fd4b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4435 + speciesSurveyCode: EBALGRA + weightEnabled: true +- !SpeciesProtocol + id: 52fdf0a9-82db-46a1-ad5d-86e258c6adc8 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1044 + speciesSurveyCode: CORSCAS + weightEnabled: true +- !SpeciesProtocol + id: 82b4a6bd-7ee8-43aa-8317-20bc21a95b21 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1050 + speciesSurveyCode: ATELROT + weightEnabled: true +- !SpeciesProtocol + id: 9560747a-57ff-4fbe-b0fb-357a5b8e3864 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1051 + speciesSurveyCode: ATELUND + weightEnabled: true +- !SpeciesProtocol + id: 9b763586-86b9-4446-a8ed-a162d486d963 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1047 + speciesSurveyCode: THIASCU + weightEnabled: true +- !SpeciesProtocol + id: 87921240-5632-4a20-8e40-4d1048500fe8 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1062 + speciesSurveyCode: PORTLAT + weightEnabled: true +- !SpeciesProtocol + id: fc5d4c1b-3cf0-491f-ab4a-036d5bfa1213 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1071 + speciesSurveyCode: LIOCARC + weightEnabled: true +- !SpeciesProtocol + id: 7f56de42-f5a9-497c-8cbc-dbf201d384d7 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1068 + speciesSurveyCode: LIOCPUS + weightEnabled: true +- !SpeciesProtocol + id: 2b5ce346-60e2-47e0-8f83-d35bfca60473 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1069 + speciesSurveyCode: LIOCDEP + weightEnabled: true +- !SpeciesProtocol + id: ebcc285e-a5ce-43ba-b737-cac272856921 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1070 + speciesSurveyCode: LIOCHOL + weightEnabled: true +- !SpeciesProtocol + id: 64db2fbc-11c0-45db-9f59-022e2e5d36ce + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1074 + speciesSurveyCode: LIOCMAR + weightEnabled: true +- !SpeciesProtocol + id: 78540ff2-f2ae-460e-932d-c4aca879841e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1075 + speciesSurveyCode: LIOCVER + weightEnabled: true +- !SpeciesProtocol + id: b9c456a9-d36b-436d-89a4-facef1cac59a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1077 + speciesSurveyCode: POLBHEN + weightEnabled: true +- !SpeciesProtocol + id: 3731d2be-87ee-4402-ab7d-2485e3624c16 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1066 + speciesSurveyCode: MCPITUB + weightEnabled: true +- !SpeciesProtocol + id: 208b203c-ba23-4002-a6ae-278f6e7a421b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4427 + speciesSurveyCode: BATYLON + weightEnabled: true +- !SpeciesProtocol + id: 3f5440e9-6394-4369-8950-6550497ecfe2 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1064 + speciesSurveyCode: BATYMAR + weightEnabled: true +- !SpeciesProtocol + id: 50688289-96e7-4bb2-9426-66ec4dfeffde + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7199 + speciesSurveyCode: DSTOMAL + weightEnabled: true +- !SpeciesProtocol + id: 9d240398-93c8-4cd8-85fd-610c3eae3607 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1094 + speciesSurveyCode: MONDCOU + weightEnabled: true +- !SpeciesProtocol + id: b8334147-b75f-4829-9e49-0cd909dcf203 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2208 + speciesSurveyCode: XANTPIL + weightEnabled: true +- !SpeciesProtocol + id: abc2ac27-8aad-49b3-b42b-5e8282729713 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1090 + speciesSurveyCode: PILUHIR + weightEnabled: true +- !SpeciesProtocol + id: 2d9e9648-c89f-458a-93c2-3ea7ba6cd36c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1103 + speciesSurveyCode: GONERHO + weightEnabled: true +- !SpeciesProtocol + id: ad917ab8-103e-4daf-afbd-bedb6ae42fa3 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1143 + speciesSurveyCode: CLCRINO + weightEnabled: true +- !SpeciesProtocol + id: 635b6cce-307e-41a1-bc37-cfcfa7ebf9fd + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4211 + speciesSurveyCode: LPTMCEL + weightEnabled: true +- !SpeciesProtocol + id: 99ee1114-7322-405e-81f3-56279336fe55 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7390 + speciesSurveyCode: ANTDPET + weightEnabled: true +- !SpeciesProtocol + id: 1ded989f-7784-4fd7-b2a4-0c72702b0f71 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1144 + speciesSurveyCode: CLASTER + weightEnabled: true +- !SpeciesProtocol + id: f53ebe69-794d-4a45-ad58-76e6333411c1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3009 + speciesSurveyCode: LUIDCIL + weightEnabled: true +- !SpeciesProtocol + id: 2b571826-1aaa-4f0e-bc0a-57bf24dbd444 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4414 + speciesSurveyCode: LUIDSAR + weightEnabled: true +- !SpeciesProtocol + id: 31e6e9a5-167d-49ba-b8ad-349ab5089b9b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1150 + speciesSurveyCode: ASTPIRI + weightEnabled: true +- !SpeciesProtocol + id: 448a204b-b7e3-4f93-96eb-a1f0438b6410 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6809 + speciesSurveyCode: PLUTBIF + weightEnabled: true +- !SpeciesProtocol + id: bb004281-050f-4cdc-b1cc-2560230a247c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12054 + speciesSurveyCode: FMBENTO +- !SpeciesProtocol + id: bafc21cb-6b12-4230-9357-87ed1e173f12 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12046 + speciesSurveyCode: ODONMED + weightEnabled: true +- !SpeciesProtocol + id: d83de79a-18a6-4231-b22e-eee89a40100c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1145 + speciesSurveyCode: ANSEPLA + weightEnabled: true +- !SpeciesProtocol + id: 360c0fc1-721d-4d35-8b4d-23c6f235e8d2 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3026 + speciesSurveyCode: PORAPUL + weightEnabled: true +- !SpeciesProtocol + id: 7445dd31-bb27-4bc1-895d-e543c83ec1e3 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7193 + speciesSurveyCode: NYMFARE + weightEnabled: true +- !SpeciesProtocol + id: 16600ab3-5d4c-4eec-9011-7dcf3c4ab049 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12058 + speciesSurveyCode: PDASGRA + weightEnabled: true +- !SpeciesProtocol + id: 404085e9-2464-4711-a53a-778d818fe32f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3685 + speciesSurveyCode: PELSPLA + weightEnabled: true +- !SpeciesProtocol + id: 9d20ecb9-a55f-4d32-a6f1-3bc5401d43e1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2404 + speciesSurveyCode: CROSPAP + weightEnabled: true +- !SpeciesProtocol + id: ab58cf71-9079-45eb-b687-386d6799a33d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7287 + speciesSurveyCode: PTASPUL + weightEnabled: true +- !SpeciesProtocol + id: 54041cef-390d-4b42-b028-6a5eb0a4564b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3577 + speciesSurveyCode: HENR + weightEnabled: true +- !SpeciesProtocol + id: 4ab104c1-f7e8-403e-8284-355ddadea0ab + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1148 + speciesSurveyCode: ASTIRUB + weightEnabled: true +- !SpeciesProtocol + id: 10d2a4a9-8013-491b-9176-c3199ed3549c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1146 + speciesSurveyCode: MARHGLA + weightEnabled: true +- !SpeciesProtocol + id: 4a392a66-d996-457e-b3c6-8dfde1bbbd4b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4660 + speciesSurveyCode: STIHROS + weightEnabled: true +- !SpeciesProtocol + id: 919fed30-0b05-4509-a387-fa1148a01cb1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12043 + speciesSurveyCode: ZOROFUL + weightEnabled: true +- !SpeciesProtocol + id: e0aadec1-8f7b-4a0a-a36d-ae92068a28a7 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7197 + speciesSurveyCode: HYMNCOR + weightEnabled: true +- !SpeciesProtocol + id: 315cfd9d-24a4-4ce9-8c6d-6eb1ca9b0b2d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1151 + speciesSurveyCode: CLOPHIU + weightEnabled: true +- !SpeciesProtocol + id: c841a4d7-bf7f-47c7-8428-9af4decc5abc + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6242 + speciesSurveyCode: ASTYLOV + weightEnabled: true +- !SpeciesProtocol + id: 641ca19e-57b6-4f02-b825-d867b1b0fc5a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1158 + speciesSurveyCode: OPHOFRA + weightEnabled: true +- !SpeciesProtocol + id: cf3fc1cb-325c-46ea-ab84-8c3b6aca2645 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3550 + speciesSurveyCode: OPHOLUE + weightEnabled: true +- !SpeciesProtocol + id: a9c01232-8c59-4abd-85e6-efe8e7b7ee4c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4398 + speciesSurveyCode: OPHANIG + weightEnabled: true +- !SpeciesProtocol + id: 668ecbae-400e-4ecd-8ca0-d229c94823f9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7675 + speciesSurveyCode: OFIABRE + weightEnabled: true +- !SpeciesProtocol + id: 2f275139-9313-46f1-998f-a6746ab70823 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1161 + speciesSurveyCode: ACROBRA + weightEnabled: true +- !SpeciesProtocol + id: 80d82447-131f-4568-b2f7-3ba6a6f53f46 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4743 + speciesSurveyCode: OPOCAFF + weightEnabled: true +- !SpeciesProtocol + id: 09e83b0e-f68a-4d8e-b5c8-dfac0ccf0dfc + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1156 + speciesSurveyCode: OPHUALB + weightEnabled: true +- !SpeciesProtocol + id: 54484344-6dcd-40d6-bc68-b7bb097e1921 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1155 + speciesSurveyCode: OPHUOPH + weightEnabled: true +- !SpeciesProtocol + id: dc1ca184-bcb6-4d1e-bfb2-baff3dd87e0f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 10421 + speciesSurveyCode: CLECHIN + weightEnabled: true +- !SpeciesProtocol + id: 9cbbed9f-b029-41c1-acc9-63be3cd0fe13 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6812 + speciesSurveyCode: CIDACID + weightEnabled: true +- !SpeciesProtocol + id: f00b9ba9-d419-4667-85de-b75180b699a7 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7334 + speciesSurveyCode: ORECHIN + weightEnabled: true +- !SpeciesProtocol + id: 9b26da0e-090a-4102-9d91-c5ac8b08aa5c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1173 + speciesSurveyCode: SPHAGRA + weightEnabled: true +- !SpeciesProtocol + id: 78b31078-1de7-428b-8a44-b804d5ae1428 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4235 + speciesSurveyCode: GRACACU + weightEnabled: true +- !SpeciesProtocol + id: 87a7f7a8-c9d4-404f-9abc-f6ea8b087454 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1168 + speciesSurveyCode: ECHNESC + weightEnabled: true +- !SpeciesProtocol + id: 1f183b37-77be-49d8-972c-35e458ccde67 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1169 + speciesSurveyCode: ECHNMEL + weightEnabled: true +- !SpeciesProtocol + id: 748dae87-0eb7-4ada-a1b4-c4828591164f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6130 + speciesSurveyCode: GRACELE + weightEnabled: true +- !SpeciesProtocol + id: 0e6dbc95-81cc-4c0c-ae53-0bdb3828c5d5 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1172 + speciesSurveyCode: PSAMMIL + weightEnabled: true +- !SpeciesProtocol + id: ee8c0623-c638-48ff-9a2f-67b6b743aa30 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1164 + speciesSurveyCode: ECHCCOR + weightEnabled: true +- !SpeciesProtocol + id: ef4b2d70-063d-4171-8926-9ee8ab8df2d0 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7283 + speciesSurveyCode: ECHCPEN + weightEnabled: true +- !SpeciesProtocol + id: a2e002ca-f3c5-42d7-aac2-f72843ab7176 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2408 + speciesSurveyCode: SPATPUR + weightEnabled: true +- !SpeciesProtocol + id: 3d56d3c1-56a5-4c4a-84dd-6772d92b28b8 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4388 + speciesSurveyCode: BRISLYR + weightEnabled: true +- !SpeciesProtocol + id: 670dd112-2b50-462e-9970-a900fc32f300 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1174 + speciesSurveyCode: CLHOLOT + weightEnabled: true +- !SpeciesProtocol + id: effc6b5a-7044-4a80-afe3-6efccf961805 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12032 + speciesSurveyCode: LAEGVIO + weightEnabled: true +- !SpeciesProtocol + id: d059101c-2c5c-4f4e-8fda-7becce76fd9a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 11323 + speciesSurveyCode: HLTPFOR + weightEnabled: true +- !SpeciesProtocol + id: db055038-640c-4353-86c1-2e600da84ebf + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2203 + speciesSurveyCode: LPTOELO + weightEnabled: true +- !SpeciesProtocol + id: 88c3b899-1a35-4a3e-ad27-013c55a18190 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7673 + speciesSurveyCode: PSOLPHA + weightEnabled: true +- !SpeciesProtocol + id: 07290b31-3111-4851-9e58-35f704dd34c1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1177 + speciesSurveyCode: PRSTREG + weightEnabled: true +- !SpeciesProtocol + id: 1c29ba85-a30c-4c30-bb51-76527374cdf1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7273 + speciesSurveyCode: PRSTTRE + weightEnabled: true +- !SpeciesProtocol + id: 37f20353-92e2-46f4-8588-c686ec0e3e05 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3023 + speciesSurveyCode: LEPSINH + weightEnabled: true +- !SpeciesProtocol + id: 86273f28-65b0-4930-9c47-bd129d0af974 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1182 + speciesSurveyCode: CLASCID + weightEnabled: true +- !SpeciesProtocol + id: 3ea9e3aa-d10c-44b4-b889-40ef8a83bce4 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3943 + speciesSurveyCode: ASCD + weightEnabled: true +- !SpeciesProtocol + id: 89407b60-c3b5-4200-ac9e-69a8bf2d0493 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 378 + speciesSurveyCode: ACAN + weightEnabled: true +- !SpeciesProtocol + id: 9f92a328-9056-4228-b985-eb35643ff74d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4749 + speciesSurveyCode: AEOLPAP + weightEnabled: true +- !SpeciesProtocol + id: 9d6f1dfa-7db6-4c68-893a-226f7985c78b + speciesReferenceTaxonId: 4627 + speciesSurveyCode: ALCDDIA + weightEnabled: true +- !SpeciesProtocol + id: 78f527ca-be57-4c30-81e6-4b2690d14d11 + speciesReferenceTaxonId: 6228 + speciesSurveyCode: ALCDPAR + weightEnabled: true +- !SpeciesProtocol + id: 8f855ffd-c7b9-4c5a-b444-4e8449d0fe96 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3037 + speciesSurveyCode: ALCY + weightEnabled: true +- !SpeciesProtocol + id: bd5118e1-ce62-490c-a898-7dc68a8fd60e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3609 + speciesSurveyCode: ANOMEPH + weightEnabled: true +- !SpeciesProtocol + id: 0b0c70de-2516-4c9a-95b9-28235a2b198b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 462 + speciesSurveyCode: ANTAENT + weightEnabled: true +- !SpeciesProtocol + id: ddf8685e-6b7a-433e-8b09-fd1632cc4050 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4510 + speciesSurveyCode: ANTD + weightEnabled: true +- !SpeciesProtocol + id: 45abde4f-99f8-4974-a146-5daabd8666d7 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6875 + speciesSurveyCode: ASTC + weightEnabled: true +- !SpeciesProtocol + id: f1b0c21c-ef14-4e28-a97f-70507c2616ed + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1049 + speciesSurveyCode: ATEL + weightEnabled: true +- !SpeciesProtocol + id: fabd7da3-edb8-4088-a0ff-9948de79120a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3650 + speciesSurveyCode: BARNCAN + weightEnabled: true +- !SpeciesProtocol + id: 5c878e93-8a13-4bb8-8015-cb5a6364321b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1163 + speciesSurveyCode: CLECHIN + weightEnabled: true +- !SpeciesProtocol + id: 62212fc2-ed05-433f-97cb-df99c496953a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 153 + speciesSurveyCode: CLPOLYC + weightEnabled: true +- !SpeciesProtocol + id: 69c2fdf6-ff7e-439d-a458-3c47abee8764 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 930 + speciesSurveyCode: CRAG + weightEnabled: true +- !SpeciesProtocol + id: f7381a4a-64fd-4f31-a16e-4c599c20ed03 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12760 + speciesSurveyCode: DIAZVIO + weightEnabled: true +- !SpeciesProtocol + id: 080f5ec1-9870-4b4f-ae7a-eb8928395070 + speciesReferenceTaxonId: 4638 + speciesSurveyCode: DIPH + weightEnabled: true +- !SpeciesProtocol + id: 622e66ea-ba9e-4beb-9f3c-c87a6368cf95 + speciesReferenceTaxonId: 12801 + speciesSurveyCode: DIPHALA + weightEnabled: true +- !SpeciesProtocol + id: a97bcd04-1d65-4a32-9d8d-4483ccd19656 + speciesReferenceTaxonId: 12802 + speciesSurveyCode: DIPHMAR + weightEnabled: true +- !SpeciesProtocol + id: 1593d1e1-b715-4e43-93da-1b33c6207794 + speciesReferenceTaxonId: 12805 + speciesSurveyCode: DIPHNIG + weightEnabled: true +- !SpeciesProtocol + id: 9fe6d92f-32ac-49af-ae7d-0ffae2ea30ed + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4512 + speciesSurveyCode: EPZA + weightEnabled: true +- !SpeciesProtocol + id: d27f9c12-0b0d-4d3a-9160-f5e745a450ed + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1118 + speciesSurveyCode: EURY + weightEnabled: true +- !SpeciesProtocol + id: 1ebd61ec-5a27-429e-997b-e1a3de29af25 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 11768 + speciesSurveyCode: EUSP + weightEnabled: true +- !SpeciesProtocol + id: 678fce36-3868-45c3-87fe-03fd058eb074 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7338 + speciesSurveyCode: FEROCAR + weightEnabled: true +- !SpeciesProtocol + id: 13d0592b-97b9-4782-8b5e-529249d86181 + speciesReferenceTaxonId: 4646 + speciesSurveyCode: FILOIMP + weightEnabled: true +- !SpeciesProtocol + id: d1a0f674-af7f-47cf-af8f-d4fcae9b334f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 154 + speciesSurveyCode: FMAPHRO + weightEnabled: true +- !SpeciesProtocol + id: e4af07e2-8277-429a-8568-f5ccf757591a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 298 + speciesSurveyCode: FMBUCCI + weightEnabled: true +- !SpeciesProtocol + id: 6cc89e20-f457-445d-ba01-935debf1ff4c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7211 + speciesSurveyCode: FMCARYO + weightEnabled: true +- !SpeciesProtocol + id: 79d6ac67-471d-4bb5-835e-d71545bc8fb0 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7333 + speciesSurveyCode: FMECHTU + weightEnabled: true +- !SpeciesProtocol + id: e6a28cb0-73d1-4d2e-855b-b5fb2db625e5 + speciesReferenceTaxonId: 4647 + speciesSurveyCode: FMFLUST + weightEnabled: true +- !SpeciesProtocol + id: 654151f5-9540-4b08-9b7f-bcea04651be2 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 196 + speciesSurveyCode: FMMALDA + weightEnabled: true +- !SpeciesProtocol + id: 45a74c34-ba48-4edb-bae3-cf8a8a29f51c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 873 + speciesSurveyCode: FMPANDA + weightEnabled: true +- !SpeciesProtocol + id: 03e1129c-5cb8-4505-81a4-0dbd7fb86050 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 361 + speciesSurveyCode: FMPECTI + weightEnabled: true +- !SpeciesProtocol + id: 70be150a-e546-4a3a-9026-c8eed34e82e4 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1058 + speciesSurveyCode: FMPORTU + weightEnabled: true +- !SpeciesProtocol + id: 6cba3d1a-89e9-4a2a-985b-a8939a7537fa + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6220 + speciesSurveyCode: FMPYCNO + weightEnabled: true +- !SpeciesProtocol + id: fe7423cb-1278-4bdc-aad6-1f504a0f0922 + speciesReferenceTaxonId: 6740 + speciesSurveyCode: FMSERTU + weightEnabled: true +- !SpeciesProtocol + id: d8f8ee49-9399-4ece-b761-8147f49f6caa + speciesReferenceTaxonId: 7288 + speciesSurveyCode: FMSTYLA + weightEnabled: true +- !SpeciesProtocol + id: ee906dfc-d55b-45f5-bd03-40fe1b2477ed + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 240 + speciesSurveyCode: FMTROCH + weightEnabled: true +- !SpeciesProtocol + id: e90d9f64-07ca-461f-9093-22cae363e1f8 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1012 + speciesSurveyCode: GALADIS + weightEnabled: true +- !SpeciesProtocol + id: 0576743e-6914-4b8e-b32f-24b11bb81655 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1013 + speciesSurveyCode: GALAINT + weightEnabled: true +- !SpeciesProtocol + id: e705683b-ea60-4941-9fc0-0adfe9575a69 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3981 + speciesSurveyCode: HAPL + weightEnabled: true +- !SpeciesProtocol + id: 0b36d857-b4bf-47bb-9ca5-47336bde348f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4687 + speciesSurveyCode: HYDCECH + weightEnabled: true +- !SpeciesProtocol + id: 650b55dd-02ef-483b-9424-1a2fbe98204d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 315 + speciesSurveyCode: ICPISTO + weightEnabled: true +- !SpeciesProtocol + id: f66616a4-2b2f-4a38-ac70-b15fc741efec + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1125 + speciesSurveyCode: INAC + weightEnabled: true +- !SpeciesProtocol + id: d5a6337a-1470-4555-bd8e-1064d79347c0 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 946 + speciesSurveyCode: IOASTAC + weightEnabled: true +- !SpeciesProtocol + id: 029e5d90-8278-4f90-ab64-adb9f1000f4b + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3596 + speciesSurveyCode: LIMO + weightEnabled: true +- !SpeciesProtocol + id: 323996a5-cf26-4458-a970-c93d80e16df6 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3597 + speciesSurveyCode: LIMOAUR + weightEnabled: true +- !SpeciesProtocol + id: 0f505020-3359-41d7-8251-5994302097d6 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1067 + speciesSurveyCode: LIOC + weightEnabled: true +- !SpeciesProtocol + id: 93f02a5f-f68b-4a1f-996b-91e2f1adcb33 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 780 + speciesSurveyCode: LOPOTYP + weightEnabled: true +- !SpeciesProtocol + id: 94f3d24b-3516-4519-b5ba-c40b1d03af2a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4206 + speciesSurveyCode: LPAS + weightEnabled: true +- !SpeciesProtocol + id: 8f5066ff-587f-4cb2-a321-961dc52bf8a8 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4123 + speciesSurveyCode: LUID + weightEnabled: true +- !SpeciesProtocol + id: 128ebeda-d4f9-4e80-80ea-abd0b202e618 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6134 + speciesSurveyCode: LYTOMYR + weightEnabled: true +- !SpeciesProtocol + id: 76e962a5-1c3a-4620-b8c4-ec8bf2e4b6cd + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1136 + speciesSurveyCode: MACRROS + weightEnabled: true +- !SpeciesProtocol + id: e95e1e02-f1a6-41f5-86eb-f8f65aa6bc8a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 392 + speciesSurveyCode: MACTSTU + weightEnabled: true +- !SpeciesProtocol + id: 5ea6cdf4-10b3-4542-9aeb-72be96eb4a4b + speciesReferenceTaxonId: 11 + speciesSurveyCode: MBCNIDA + weightEnabled: true +- !SpeciesProtocol + id: 031e2a8a-a221-4743-8a9d-75a82734ddf2 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 225 + speciesSurveyCode: MBMOLLU + weightEnabled: true +- !SpeciesProtocol + id: 62e9d1db-1e44-4513-8a1a-7490508e8f12 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 367 + speciesSurveyCode: MIMAVAR + weightEnabled: true +- !SpeciesProtocol + id: 5c44bee6-3257-4a1a-ba61-ae7737b5344d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 344 + speciesSurveyCode: MYTI + weightEnabled: true +- !SpeciesProtocol + id: ca2c508b-310a-472b-9e0d-1703f7dded95 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 345 + speciesSurveyCode: MYTIEDU + weightEnabled: true +- !SpeciesProtocol + id: cee5c58a-8e25-49d0-ab78-2d1c6c542591 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 338 + speciesSurveyCode: NUCU + weightEnabled: true +- !SpeciesProtocol + id: 5e021170-6760-4e3c-b6c5-5dca28d6f4f4 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4126 + speciesSurveyCode: OPHO + weightEnabled: true +- !SpeciesProtocol + id: 06cf5224-5c85-4b9b-a3d3-a3fc82c66b42 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4417 + speciesSurveyCode: OPHPACU + weightEnabled: true +- !SpeciesProtocol + id: b2d6fc23-7779-4174-9c54-fd41e7b9f9fe + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1154 + speciesSurveyCode: OPHU + weightEnabled: true +- !SpeciesProtocol + id: e5b6197f-3ae3-4ac7-8b74-9f0aa04e8387 + speciesReferenceTaxonId: 6665 + speciesSurveyCode: ORCHEIL + weightEnabled: true +- !SpeciesProtocol + id: f3051c3c-3d8c-4b29-b3a0-5401d86e73ad + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 792 + speciesSurveyCode: ORISOPD + weightEnabled: true +- !SpeciesProtocol + id: 997df789-472c-407f-aab3-880c71ae5e96 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4410 + speciesSurveyCode: ORNUDIB + weightEnabled: true +- !SpeciesProtocol + id: f7f1fc6c-f747-45f6-9e43-55dd1664f307 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7142 + speciesSurveyCode: ORSPATA + weightEnabled: true +- !SpeciesProtocol + id: 369d694c-041a-4b01-9e7d-dce1a577b273 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 993 + speciesSurveyCode: PAGU + weightEnabled: true +- !SpeciesProtocol + id: 1ef4a73a-f89d-4730-b716-6e29570a2268 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12197 + speciesSurveyCode: PHAKVEN + weightEnabled: true +- !SpeciesProtocol + id: ee950eb0-d422-46c1-b6c0-d8f970431b4a + speciesReferenceTaxonId: 4678 + speciesSurveyCode: POLY + weightEnabled: true +- !SpeciesProtocol + id: c2a4362d-7ec4-4219-b88b-b4dc503221dc + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7688 + speciesSurveyCode: PORPPUL + weightEnabled: true +- !SpeciesProtocol + id: a422e1f0-3b90-4f43-93c0-70def484e2da + speciesReferenceTaxonId: 12804 + speciesSurveyCode: PPLUFLA + weightEnabled: true +- !SpeciesProtocol + id: a84f114d-e8dd-494d-9695-0d164d1caf27 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 914 + speciesSurveyCode: PROCCAN + weightEnabled: true +- !SpeciesProtocol + id: 3982fa55-4630-4a09-9261-f1de01d7e877 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4440 + speciesSurveyCode: PROCELE + weightEnabled: true +- !SpeciesProtocol + id: 3ed5e782-8cb3-4ec7-9b1e-58792965e52c + speciesReferenceTaxonId: 6223 + speciesSurveyCode: RETE + weightEnabled: true +- !SpeciesProtocol + id: b2ee0f02-9e60-42f5-b40a-c6c4bc41047d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3383 + speciesSurveyCode: RGPLANT + weightEnabled: true +- !SpeciesProtocol + id: 81a9d581-6c1e-4456-a908-ff5730f924e8 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3875 + speciesSurveyCode: SABR + weightEnabled: true +- !SpeciesProtocol + id: 6eafdc87-5f9a-4a56-a1b8-d2c39ffb69ae + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 518 + speciesSurveyCode: SCAEUNI + weightEnabled: true +- !SpeciesProtocol + id: 17d60ae8-8ca0-47ea-b1c0-c7e9e1cc3c72 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6136 + speciesSurveyCode: SCHIRUD + weightEnabled: true +- !SpeciesProtocol + id: ff89d700-8219-42f7-841c-32a1c720e177 + speciesReferenceTaxonId: 12808 + speciesSurveyCode: SCHZFRU + weightEnabled: true +- !SpeciesProtocol + id: e9d3c984-a8da-464e-a22e-0bc4879cee68 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2226 + speciesSurveyCode: SCOCTOC + weightEnabled: true +- !SpeciesProtocol + id: 0d25cc68-bf33-44ed-9aab-26524d2b6326 + speciesReferenceTaxonId: 4677 + speciesSurveyCode: SECUSEC + weightEnabled: true +- !SpeciesProtocol + id: dd32d66e-ca60-4436-a9f9-f2e60e100c83 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4739 + speciesSurveyCode: SERTCUP + weightEnabled: true +- !SpeciesProtocol + id: 4868809f-aa65-4e41-b72a-9bb78cc4f0e5 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 395 + speciesSurveyCode: SPISSOL + weightEnabled: true +- !SpeciesProtocol + id: 7e11ea13-4d84-415b-8aec-2a265bf199a4 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3197 + speciesSurveyCode: STYECLA + weightEnabled: true +- !SpeciesProtocol + id: c6de4ce5-cd0e-4794-92fa-cd6957bce095 + speciesReferenceTaxonId: 7504 + speciesSurveyCode: TAMATAM + weightEnabled: true +- !SpeciesProtocol + id: db59db9f-e0b7-4f75-8ac9-0229a9368844 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 11955 + speciesSurveyCode: TETASUB + weightEnabled: true +- !SpeciesProtocol + id: deabd91e-5720-4fa1-a789-593e3e972317 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 329 + speciesSurveyCode: TETHFIM + weightEnabled: true +- !SpeciesProtocol + id: 43afc139-6fdb-4a97-8d76-5bf7dfe883a1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3805 + speciesSurveyCode: THYO + weightEnabled: true +- !SpeciesProtocol + id: a1be0991-bfb2-4d37-be8b-33759e02a2bd + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1175 + speciesSurveyCode: THYOFUS + weightEnabled: true +- !SpeciesProtocol + id: ae734e74-16a7-41b3-9de2-3b59bd7046e3 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7278 + speciesSurveyCode: UFPORTU + weightEnabled: true +- !SpeciesProtocol + id: c816d04f-e59d-4905-864a-2610a39f6789 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2434 + speciesSurveyCode: URTI + weightEnabled: true +- !SpeciesProtocol + id: c65db4ee-d536-4f2e-b25c-9c0dd36d51f0 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3007 + speciesSurveyCode: VERECYN + weightEnabled: true +- !SpeciesProtocol + id: 95d5128b-c27d-4604-b7e6-532183706586 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12940 + speciesSurveyCode: EPHYFIG + weightEnabled: true +- !SpeciesProtocol + id: fce605eb-a7d2-4840-b41d-dcd626bb8d5e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7709 + speciesSurveyCode: HYASCOA + weightEnabled: true +- !SpeciesProtocol + id: 364b8563-a802-4a61-97b3-c337dd513c47 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12956 + speciesSurveyCode: LABPDIG + weightEnabled: true +- !SpeciesProtocol + id: a564ad28-d771-49a2-af33-dddce727b89f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 915 + speciesSurveyCode: PROCNOU + weightEnabled: true +- !SpeciesProtocol + id: 38356f5a-6ed7-4244-bf2c-e47eafe6349a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1087 + speciesSurveyCode: GERYTRI + weightEnabled: true +- !SpeciesProtocol + id: 8d784908-edee-4998-9b7b-4da4fa67a7ba + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4001 + speciesSurveyCode: SAGASCH + weightEnabled: true +- !SpeciesProtocol + id: f131d8c5-ee69-458a-938e-71da74977d1d + speciesReferenceTaxonId: 12820 + speciesSurveyCode: SEREGAY + weightEnabled: true +- !SpeciesProtocol + id: 87747096-c708-4c13-a3cd-86cebc7351fc + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7207 + speciesSurveyCode: FMHORMA + weightEnabled: true +- !SpeciesProtocol + id: 45a1ee4c-5e2b-4e10-b991-867ea9a1a391 + speciesReferenceTaxonId: 4666 + speciesSurveyCode: NEME + weightEnabled: true +- !SpeciesProtocol + id: 8626d2c6-da24-4112-b12f-5299037334ee + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4650 + speciesSurveyCode: FMECHII + weightEnabled: true +- !SpeciesProtocol + id: 96fd09f3-4b3c-4b46-b40e-86ea1ad6490d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1019 + speciesSurveyCode: MUNIRUT + weightEnabled: true +- !SpeciesProtocol + id: fabdbd8f-a0bc-4335-a951-c0c2112ccf41 + speciesReferenceTaxonId: 13105 + speciesSurveyCode: THUIART + weightEnabled: true +- !SpeciesProtocol + id: 7db8c854-a8c4-433f-b3f7-73012b402ebb + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 13112 + speciesSurveyCode: CAVEPUS + weightEnabled: true +- !SpeciesProtocol + id: ed19ab45-9ae8-4c92-acaa-cbe759da1136 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6758 + speciesSurveyCode: FMVERET + weightEnabled: true +- !SpeciesProtocol + id: d3ca3c15-de6c-4e9f-92b5-021d701f0193 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1014 + speciesSurveyCode: GALANEX + weightEnabled: true +- !SpeciesProtocol + id: 4fac9d79-a727-4b74-afa4-6a7ef5fc0685 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 935 + speciesSurveyCode: PONPNOR + weightEnabled: true +- !SpeciesProtocol + id: 82f14c26-2106-48ef-9ba8-7638b1c122f9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1123 + speciesSurveyCode: DORHTHO + weightEnabled: true +- !SpeciesProtocol + id: cc1e9791-8817-4003-af82-18e7cb1d2510 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 13123 + speciesSurveyCode: MESTINT + weightEnabled: true +- !SpeciesProtocol + id: 64f1fd68-090b-47a7-8442-b92a3080cedc + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 13114 + speciesSurveyCode: ACAPROS + weightEnabled: true +- !SpeciesProtocol + id: c6979c34-9b50-4a78-aca5-b1b64e3d0678 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3672 + speciesSurveyCode: TERBRET + weightEnabled: true +- !SpeciesProtocol + id: b392c4ab-8069-4170-a8c7-d8e4021a9f67 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6290 + speciesSurveyCode: GOLGVUV + weightEnabled: true +- !SpeciesProtocol + id: 23e3036a-ab7c-4c50-8f68-9b7c5483b288 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12646 + speciesSurveyCode: EUNAVER + weightEnabled: true +- !SpeciesProtocol + id: e9e2a7d0-b1b5-426b-8fef-c3fc2f2fdb3f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7499 + speciesSurveyCode: AMFBOPE + weightEnabled: true +- !SpeciesProtocol + id: 3c56da29-fe06-4727-8bd1-a475d3b5b508 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4629 + speciesSurveyCode: ASCI + weightEnabled: true +- !SpeciesProtocol + id: 927a4ba6-24b5-4430-a07b-9b248c8fc943 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 8 + speciesSurveyCode: SUBE + weightEnabled: true +- !SpeciesProtocol + id: 6a3e0d20-634d-4113-b458-b9c0811acdf0 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 861 + speciesSurveyCode: EUSEARC + weightEnabled: true +- !SpeciesProtocol + id: 4d078be8-2cda-4819-aad2-ffa863beb72a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3022 + speciesSurveyCode: FMSYNAD + weightEnabled: true +- !SpeciesProtocol + id: bc368792-3992-4414-b342-74ae924e213d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 4438 + speciesSurveyCode: SERGARA + weightEnabled: true +- !SpeciesProtocol + id: e0d5e6a7-5701-48e0-b429-c721ce774ee3 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 3611 + speciesSurveyCode: MONISQU + weightEnabled: true +- !SpeciesProtocol + id: 60750864-da1a-4813-aef4-cbae9bafbe8a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 316 + speciesSurveyCode: ACTETOR + weightEnabled: true +- !SpeciesProtocol + id: fd1a35ab-9337-490a-8188-345029966d8a + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 348 + speciesSurveyCode: MODIBAR + weightEnabled: true +- !SpeciesProtocol + id: 05c42fa3-99a4-426a-a714-a0669f6f1e84 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 12836 + speciesSurveyCode: POLIRHO + weightEnabled: true +- !SpeciesProtocol + id: 90a18156-437e-40f6-9a1c-13d6256821b6 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 7241 + speciesSurveyCode: GIBBTUM + weightEnabled: true +- !SpeciesProtocol + id: 016fa1bf-3bfb-4338-8238-0d9614bd0cb1 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6837 + speciesSurveyCode: GNAO + weightEnabled: true +comment: "Protocole en pr\u00e9paration pour EVHOE 2015" +individualObservationPmfmId: +- 1246 +- 174 +- 1502 +lengthClassesPmfmId: +- 306 +- 622 +- 307 +- 302 +- 299 +- 1394 +- 1417 +- 1425 +- 1426 +- 1427 +- 284 +- 285 +- 294 +- 295 +- 300 +- 301 +- 304 +- 318 +- 319 +- 322 +- 323 +- 661 +- 662 +species: +- !SpeciesProtocol + id: 2a9808b3-dca1-4f91-be09-3623b6665b90 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1732 + speciesSurveyCode: ACAN-PAL + weightEnabled: true +- !SpeciesProtocol + id: dfaeb16b-89d3-4995-8498-289f6b10464e + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1938 + speciesSurveyCode: AGON-CAT + weightEnabled: true +- !SpeciesProtocol + id: 5c71af85-4e7f-4662-89c9-eecd5546d1d7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1345 + speciesSurveyCode: ALEP-BAI + weightEnabled: true +- !SpeciesProtocol + id: 82b1fffa-c26a-4c79-b0e9-1854d6ce5377 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1344 + speciesSurveyCode: ALEP-ROS + weightEnabled: true +- !SpeciesProtocol + id: abc62109-181f-4eab-9e07-96a64cbfe672 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 491 + speciesSurveyCode: ALLO-TEZ + weightEnabled: true +- !SpeciesProtocol + id: c77327ce-2abc-4b84-991c-a81aa3df4db1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1358 + speciesSurveyCode: ALOS-ALO + weightEnabled: true +- !SpeciesProtocol + id: 99b347b6-62a5-461c-bb81-e44ac1e3e463 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1359 + speciesSurveyCode: ALOS-FAL + weightEnabled: true +- !SpeciesProtocol + id: 7a0105b8-bcfb-4560-beae-7606b5558d9d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1750 + speciesSurveyCode: AMMO-MAR + weightEnabled: true +- !SpeciesProtocol + id: 8f635168-b15e-4099-94d2-f15d8518897d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1749 + speciesSurveyCode: AMMO-TOB + weightEnabled: true +- !SpeciesProtocol + id: 2bef888b-cc35-47ab-b8c7-c0467f2ffeac + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1830 + speciesSurveyCode: ANAR-LUP + weightEnabled: true +- !SpeciesProtocol + id: 80e8f086-60c5-4ae7-ac9d-168eb7302682 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + speciesReferenceTaxonId: 1452 + speciesSurveyCode: ANGU-ANG + weightEnabled: true +- !SpeciesProtocol + id: e50b34c3-8ded-4f26-b661-826ed087c6c2 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2590 + speciesSurveyCode: ANOP-COR + weightEnabled: true +- !SpeciesProtocol + id: 588f7d7a-3245-46cf-97c5-e16b53fc0171 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1766 + speciesSurveyCode: APHA-CAR + weightEnabled: true +- !SpeciesProtocol + id: 86c2d4ba-0a73-45d8-b0d3-b665a902bb81 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1795 + speciesSurveyCode: APHI-MIN + weightEnabled: true +- !SpeciesProtocol + id: ea81fff7-26af-48b0-a0ea-472de62a423e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1395 + speciesSurveyCode: ARGE-SIL + weightEnabled: true +- !SpeciesProtocol + id: ef347486-313a-4a1a-a17a-4741ee9dc2fb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1394 + speciesSurveyCode: ARGE-SPH + weightEnabled: true +- !SpeciesProtocol + id: cb86e05c-9d8b-4ef3-ae8a-4bdcebf4b7a0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1377 + speciesSurveyCode: ARGY-ACU + weightEnabled: true +- !SpeciesProtocol + id: f664fc3a-fe30-46e0-b652-c2fd29e7897a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1375 + speciesSurveyCode: ARGY-HEM + weightEnabled: true +- !SpeciesProtocol + id: 62bdb1e0-c024-46a4-b6e6-ee4811da01a7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1376 + speciesSurveyCode: ARGY-OLF + weightEnabled: true +- !SpeciesProtocol + id: aac38451-d84a-4acc-957a-f9c8d8408f48 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1680 + speciesSurveyCode: ARGY-OPZ + weightEnabled: true +- !SpeciesProtocol + id: 5dd4febc-a764-425b-8f3f-77202e3a292f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1681 + speciesSurveyCode: ARGY-REG + weightEnabled: true +- !SpeciesProtocol + id: 8c2730fa-f033-4db6-b166-e45a5d419fbb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1972 + speciesSurveyCode: ARNO-IMP + weightEnabled: true +- !SpeciesProtocol + id: 4749a7d7-d5ef-46af-b628-76bf394ce17b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1971 + speciesSurveyCode: ARNO-LAT + weightEnabled: true +- !SpeciesProtocol + id: b9daf3fc-d618-40a9-b3e8-fe84cbf8b9e0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1974 + speciesSurveyCode: ARNO-THO + weightEnabled: true +- !SpeciesProtocol + id: 24514d33-7dea-40ab-862c-98b7e7a37ac5 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1912 + speciesSurveyCode: ASPI-CUC + weightEnabled: true +- !SpeciesProtocol + id: b5c0a76a-edd9-4010-a63b-9a26da5cd483 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1913 + speciesSurveyCode: ASPI-OBS + weightEnabled: true +- !SpeciesProtocol + id: 7cdd1d64-0232-47ef-ac7e-ec5e421d6027 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1890 + speciesSurveyCode: ATHE-BOY + weightEnabled: true +- !SpeciesProtocol + id: dad069b8-654b-480b-8394-0040bb71d806 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1891 + speciesSurveyCode: ATHE-PRE + weightEnabled: true +- !SpeciesProtocol + id: 1caa4d19-f146-487d-befb-f0f512292871 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2025 + speciesSurveyCode: BALI-CAP + weightEnabled: true +- !SpeciesProtocol + id: e47d05fd-4d21-4357-b110-560cbec34c7d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2024 + speciesSurveyCode: BALI-STZ + weightEnabled: true +- !SpeciesProtocol + id: 8ce306a0-e286-49f5-b8e3-748a2717c93a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 805 + speciesSurveyCode: BATH-DUB + weightEnabled: true +- !SpeciesProtocol + id: 7e882fff-1743-41cb-942b-14a05bdeeac7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2597 + speciesSurveyCode: BATH-EUR + weightEnabled: true +- !SpeciesProtocol + id: b8b095f1-bdfd-40bb-9098-ceb1bd7b20dc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2002 + speciesSurveyCode: BATH-PRO + weightEnabled: true +- !SpeciesProtocol + id: b53cbc7d-d33e-4f6b-aec3-4168e9303392 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 523 + speciesSurveyCode: BATH-SPO + weightEnabled: true +- !SpeciesProtocol + id: 1837eff6-e902-453a-aef4-801a4bd2a2b4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1488 + speciesSurveyCode: BELO-BEO + weightEnabled: true +- !SpeciesProtocol + id: 89e3cc24-edce-4e44-9331-58617f00e907 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1416 + speciesSurveyCode: BENT-GLA + weightEnabled: true +- !SpeciesProtocol + id: 73c5148c-5503-4042-95d3-59534515ebc3 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1609 + speciesSurveyCode: BERY-DEC + weightEnabled: true +- !SpeciesProtocol + id: 0ed6ecc6-aa51-45e3-afbe-b0aaed02f28e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1610 + speciesSurveyCode: BERY-SPL + weightEnabled: true +- !SpeciesProtocol + id: 940ffac4-9a71-4adf-8fa1-09d9081bf6cf + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1818 + speciesSurveyCode: BLEN-OCE + weightEnabled: true +- !SpeciesProtocol + id: a0504e92-4ac4-49c4-8349-b9b5ca491155 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1698 + speciesSurveyCode: BOOP-BOO + weightEnabled: true +- !SpeciesProtocol + id: 26bb5baf-ba1e-4d3f-9bb3-c23fae2d6e4d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1672 + speciesSurveyCode: BRAM-BRA + weightEnabled: true +- !SpeciesProtocol + id: 21562d7b-4cda-40a6-a054-0a1c496a1582 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 300 + speciesSurveyCode: BUCC-UND + weightEnabled: true +- !SpeciesProtocol + id: ba48a632-86bb-467b-8634-1c07977b4e02 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 3702 + speciesSurveyCode: BUEN-JEF + weightEnabled: true +- !SpeciesProtocol + id: 744ebb81-150e-4e89-8133-db851929f2b0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2004 + speciesSurveyCode: BUGL-LUT + weightEnabled: true +- !SpeciesProtocol + id: a40ad3fd-5993-443c-9d4e-a287d7fd0e1b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1811 + speciesSurveyCode: CALL-LYR + weightEnabled: true +- !SpeciesProtocol + id: 3ab9cdad-a54f-445b-b2c9-36a42852ca4a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1812 + speciesSurveyCode: CALL-MAC + weightEnabled: true +- !SpeciesProtocol + id: 51c693cf-b531-4add-b6f2-e4c67b84d6d2 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1813 + speciesSurveyCode: CALL-RET + weightEnabled: true +- !SpeciesProtocol + id: 4ec0401b-a9ed-4999-98e3-b57b4aca7e6b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1055 + speciesSurveyCode: CANC-BEL + weightEnabled: true +- !SpeciesProtocol + id: 197bd88f-748d-4bf0-a976-06519e04aaf8 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1054 + speciesSurveyCode: CANC-PAG + weightEnabled: true +- !SpeciesProtocol + id: 2858aeab-a927-436d-a137-348fb7063992 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1624 + speciesSurveyCode: CAPR-APE + weightEnabled: true +- !SpeciesProtocol + id: 3f20473c-e23c-4fbf-bc89-13f0463e79cf + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1272 + speciesSurveyCode: CENT-CRE + weightEnabled: true +- !SpeciesProtocol + id: 543a3a5e-45f2-4657-88cd-f1f471e06246 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1734 + speciesSurveyCode: CENT-EXO + weightEnabled: true +- !SpeciesProtocol + id: 98cf9755-8ffd-43a9-a58b-dfd611a526c1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2207 + speciesSurveyCode: CENT-FAB + weightEnabled: true +- !SpeciesProtocol + id: 09366778-6762-4167-8060-0e01abbd68ee + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1278 + speciesSurveyCode: CENT-SQU + weightEnabled: true +- !SpeciesProtocol + id: 2e5e6357-bd9f-4898-a7e4-8d4bdb42b8fb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1654 + speciesSurveyCode: CEPO-RUB + weightEnabled: true +- !SpeciesProtocol + id: 92b98f30-6841-4f07-964d-03665df8d508 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1417 + speciesSurveyCode: CERA-MAD + weightEnabled: true +- !SpeciesProtocol + id: fc055439-c9c7-40f2-95d2-02fc76ced551 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1383 + speciesSurveyCode: CHAU-SLO + weightEnabled: true +- !SpeciesProtocol + id: 475cf14c-76e1-4b8a-86ef-e389e0d3726a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1879 + speciesSurveyCode: CHEL-LAB + weightEnabled: true +- !SpeciesProtocol + id: 3bc8b72e-0832-409f-ba07-c148f16edd8f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1335 + speciesSurveyCode: CHIM-MON + weightEnabled: true +- !SpeciesProtocol + id: 52808775-fa00-408c-a8a4-538625bdb2a2 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1834 + speciesSurveyCode: CHIR-ASC + weightEnabled: true +- !SpeciesProtocol + id: df780dbf-ecf9-4398-9a7c-c31c6f013ec1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 365 + speciesSurveyCode: CHLA-OPE + weightEnabled: true +- !SpeciesProtocol + id: a7c8d497-80e8-4ccb-9728-2e94e7fe8286 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1410 + speciesSurveyCode: CHLO-AGA + weightEnabled: true +- !SpeciesProtocol + id: a9c73f45-ae72-47c6-a044-a20afac0ea96 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1562 + speciesSurveyCode: CILI-ATZ + weightEnabled: true +- !SpeciesProtocol + id: bc8cfca4-4ed3-449f-9cba-876464c3efcd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1563 + speciesSurveyCode: CILI-MUS + weightEnabled: true +- !SpeciesProtocol + id: 4eec42ee-5940-4ae1-aaee-e488745b4efa + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1349 + speciesSurveyCode: CLUP-HAR + weightEnabled: true +- !SpeciesProtocol + id: c2fd83db-a7cd-410b-9f86-d821652c02ac + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1532 + speciesSurveyCode: COEL-COE + weightEnabled: true +- !SpeciesProtocol + id: 45caa9e6-f3c3-479d-ad43-4d9bd7614e9f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2604 + speciesSurveyCode: COEL-LAB + weightEnabled: true +- !SpeciesProtocol + id: 05e4ac57-ab7f-4cb5-a842-97b59db32761 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1467 + speciesSurveyCode: CONG-CON + weightEnabled: true +- !SpeciesProtocol + id: 7c8401ce-cc97-436a-bba2-2a5c4d55be0e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1535 + speciesSurveyCode: CORY-RUP + weightEnabled: true +- !SpeciesProtocol + id: 2961d894-50c9-4fc6-bb2b-ddef67c1de61 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 372 + speciesSurveyCode: CRAS-GIG + weightEnabled: true +- !SpeciesProtocol + id: 0d29d2a1-73e1-4818-b6bc-a39b8695dda9 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + speciesReferenceTaxonId: 1797 + speciesSurveyCode: CRYS-LIN + weightEnabled: true +- !SpeciesProtocol + id: 2cb132b6-530b-4b26-92a1-d2bfe0cb3485 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1736 + speciesSurveyCode: CTEN-RUP + weightEnabled: true +- !SpeciesProtocol + id: 8626d833-e291-4ecb-a609-41be1b526c51 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 4258 + speciesSurveyCode: CYCL-BRA + weightEnabled: true +- !SpeciesProtocol + id: 00a815f8-2755-411c-83f1-756c02a1ba41 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 6819 + speciesSurveyCode: CYCL-MIC + weightEnabled: true +- !SpeciesProtocol + id: 53df140c-108e-41dc-bd16-6bea3e2a300a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 670 + speciesSurveyCode: CYCL-OTZ + weightEnabled: true +- !SpeciesProtocol + id: 38e790ab-6d2f-4c6f-831a-cb97c10e7914 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1621 + speciesSurveyCode: CYTT-ROS + weightEnabled: true +- !SpeciesProtocol + id: 992aec02-be68-4fae-839d-587f90293e26 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1282 + speciesSurveyCode: DALA-LIC + weightEnabled: true +- !SpeciesProtocol + id: 26367f9d-bda0-4232-9126-8a5e6630c81e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1322 + speciesSurveyCode: DASY-PAS + weightEnabled: true +- !SpeciesProtocol + id: f7ccc7fd-95a4-409c-b811-d80efdb1222a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1273 + speciesSurveyCode: DEAN-CAL + weightEnabled: true +- !SpeciesProtocol + id: 7a85c35f-8043-4533-8c93-c88494b30dda + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 7558 + speciesSurveyCode: DEAN-PRO + weightEnabled: true +- !SpeciesProtocol + id: 2f891a9c-d145-4f6f-b5a7-cca2def735b1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1421 + speciesSurveyCode: DIAP-HUZ + weightEnabled: true +- !SpeciesProtocol + id: 2d13a3cd-5052-4442-956f-77a0ca85b28e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1423 + speciesSurveyCode: DIAP-MET + weightEnabled: true +- !SpeciesProtocol + id: bbe63421-a36f-452d-84f3-5575a947d147 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1644 + speciesSurveyCode: DICE-LAB + weightEnabled: true +- !SpeciesProtocol + id: 3b28b6a5-56fb-49eb-a006-13f472aa890c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1645 + speciesSurveyCode: DICE-PUN + weightEnabled: true +- !SpeciesProtocol + id: 89c93057-9080-443f-b4cf-ad712e7edc56 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2006 + speciesSurveyCode: DICO-CUN + weightEnabled: true +- !SpeciesProtocol + id: bf48afda-dc89-4705-9556-403b8ac21dcc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2041 + speciesSurveyCode: DIPL-ECZ + weightEnabled: true +- !SpeciesProtocol + id: d04ee728-69d9-4603-bfa6-abf8f114721d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1704 + speciesSurveyCode: DIPL-VUL + weightEnabled: true +- !SpeciesProtocol + id: e5ba4f4e-30b4-4428-bbfe-dedd6f982aa3 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1863 + speciesSurveyCode: ECHI-DRU + weightEnabled: true +- !SpeciesProtocol + id: 17ebf6e2-aa59-4a81-9bb3-24deb484d1de + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1762 + speciesSurveyCode: ECHI-VIP + weightEnabled: true +- !SpeciesProtocol + id: 9ef79296-0294-41b5-a949-0f61f5124de5 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 522 + speciesSurveyCode: ELED-CIR + weightEnabled: true +- !SpeciesProtocol + id: 9dff0ee6-09bb-4e2f-983e-2d8d09b0cb79 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1577 + speciesSurveyCode: ENCH-CIM + weightEnabled: true +- !SpeciesProtocol + id: b0bde1cc-ba02-44dc-afc4-c12519725d62 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + speciesReferenceTaxonId: 1362 + speciesSurveyCode: ENGR-ENC + weightEnabled: true +- !SpeciesProtocol + id: f50294f3-8dd8-47ac-af47-e1cc45d818b1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1510 + speciesSurveyCode: ENTE-AEQ + weightEnabled: true +- !SpeciesProtocol + id: 85f0ceed-dfc5-46e9-a65e-f3c2788836ff + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1651 + speciesSurveyCode: EPIG-TEL + weightEnabled: true +- !SpeciesProtocol + id: 9aa8f473-8f90-49f4-b62a-ceec15cc9af5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2608 + speciesSurveyCode: ETMO-PRI + weightEnabled: true +- !SpeciesProtocol + id: 53a30dab-4b02-4714-bea5-65dcfbd415ee + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1275 + speciesSurveyCode: ETMO-SPI + weightEnabled: true +- !SpeciesProtocol + id: e48466a2-086a-4a01-b52a-7461f44d181d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1920 + speciesSurveyCode: EUTR-GUR + weightEnabled: true +- !SpeciesProtocol + id: 9eb0075e-c13f-41c8-8440-89870e2fb8d5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 7693 + speciesSurveyCode: GADI-ARG + weightEnabled: true +- !SpeciesProtocol + id: fdf5ad7b-2ff7-4173-a130-e34a94711da4 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1543 + speciesSurveyCode: GADU-MOR + weightEnabled: true +- !SpeciesProtocol + id: cc5255a9-d438-4125-b24d-38b833407892 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1547 + speciesSurveyCode: GAID-BIS + weightEnabled: true +- !SpeciesProtocol + id: 23d5c19c-bb52-4de7-a44b-fb47639d2cbf + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1581 + speciesSurveyCode: GAID-MAC + weightEnabled: true +- !SpeciesProtocol + id: a6e9c78f-b7da-4b8e-82c6-27746045e2cd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1579 + speciesSurveyCode: GAID-MED + weightEnabled: true +- !SpeciesProtocol + id: 4b9f7b3c-c111-4c66-882a-298634112e85 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1578 + speciesSurveyCode: GAID-ROZ + weightEnabled: true +- !SpeciesProtocol + id: 5db93e07-6101-45bf-be3e-5f92f7dc37aa + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1580 + speciesSurveyCode: GAID-VUL + weightEnabled: true +- !SpeciesProtocol + id: 0b21550f-834b-48e1-9e2d-0d529dc79ff7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1254 + speciesSurveyCode: GALE-GAL + weightEnabled: true +- !SpeciesProtocol + id: 844f1b7b-615c-4cca-b35c-cd2323371388 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1245 + speciesSurveyCode: GALE-MEL + weightEnabled: true +- !SpeciesProtocol + id: cbba937e-6af0-47b5-a38f-0ce25713a1e5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1084 + speciesSurveyCode: GERY-QUI + weightEnabled: true +- !SpeciesProtocol + id: c99f9c84-5bf7-4502-a19d-6b9e8f275e27 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1980 + speciesSurveyCode: GLYP-CYN + weightEnabled: true +- !SpeciesProtocol + id: 86b2dee9-4eef-4770-b27c-0cbe5116e8e6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1782 + speciesSurveyCode: GOBI-IDX + weightEnabled: true +- !SpeciesProtocol + id: c0f00542-e158-4e45-b7c6-6e24f5562371 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1785 + speciesSurveyCode: GOBI-NIG + weightEnabled: true +- !SpeciesProtocol + id: 36423107-ac59-4964-9db5-d37b0a326e0f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1786 + speciesSurveyCode: GOBI-PAG + weightEnabled: true +- !SpeciesProtocol + id: 294e8035-b6fc-4a9f-a94a-5ac82deb093c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 2614 + speciesSurveyCode: GONO-BAT + weightEnabled: true +- !SpeciesProtocol + id: 3b7daa9e-11e1-472b-9ba0-fb8b8d087935 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6822 + speciesSurveyCode: GONO-ELO + weightEnabled: true +- !SpeciesProtocol + id: 099189cb-aaaf-4daf-8d11-f7e33e8a392c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1753 + speciesSurveyCode: GYMN-SEM + weightEnabled: true +- !SpeciesProtocol + id: 5cbab0af-1e48-4eae-9742-d9ae7a69a5a0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + speciesReferenceTaxonId: 1588 + speciesSurveyCode: HALA-JOH + weightEnabled: true +- !SpeciesProtocol + id: 3d5dd2f4-3339-4a06-9cd3-1d052b95a798 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1905 + speciesSurveyCode: HELI-DAC + weightEnabled: true +- !SpeciesProtocol + id: e82af501-5b15-45ff-8a4d-e540bc7d5280 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1222 + speciesSurveyCode: HEPT-PER + weightEnabled: true +- !SpeciesProtocol + id: 3348c0c0-95d1-4aad-bc52-9b67e2b6c835 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1220 + speciesSurveyCode: HEXA-GRI + weightEnabled: true +- !SpeciesProtocol + id: a564c393-9d19-4c5c-a159-36f6c34ee058 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1512 + speciesSurveyCode: HIPP-HIC + weightEnabled: true +- !SpeciesProtocol + id: 2bceefd4-9db8-49ed-8eb9-debca775c738 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1511 + speciesSurveyCode: HIPP-OCZ + weightEnabled: true +- !SpeciesProtocol + id: 3ec5fdf6-9236-450b-8d17-e50397cc2fa7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1982 + speciesSurveyCode: HIPP-PLA + weightEnabled: true +- !SpeciesProtocol + id: 0d6686a5-4af1-4719-8655-ce1862db22bf + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1513 + speciesSurveyCode: HIPP-RAM + weightEnabled: true +- !SpeciesProtocol + id: 63394710-77f9-46df-ab12-dbbbe3309584 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 501 + speciesSurveyCode: HIST-ITZ + weightEnabled: true +- !SpeciesProtocol + id: 5956b50d-af26-4301-8e32-acca01c67596 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 503 + speciesSurveyCode: HIST-REV + weightEnabled: true +- !SpeciesProtocol + id: fa1700eb-bcfd-4418-a5c6-db08e30eedbd + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 6823 + speciesSurveyCode: HOLT-MAC + weightEnabled: true +- !SpeciesProtocol + id: ad0f1b3f-1d4c-4031-9bdc-787eefd3b43d + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 951 + speciesSurveyCode: HOMA-GAM + weightEnabled: true +- !SpeciesProtocol + id: ebe2f633-b848-426c-aad3-643c15f0bcb4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1614 + speciesSurveyCode: HOPL-ATL + weightEnabled: true +- !SpeciesProtocol + id: ae81b59b-03d9-46c4-bd1d-3c1d40655f9a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1613 + speciesSurveyCode: HOPL-MED + weightEnabled: true +- !SpeciesProtocol + id: 58aaa242-786e-4db9-ad58-844f4cf636aa + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2630 + speciesSurveyCode: HYDR-MIR + weightEnabled: true +- !SpeciesProtocol + id: 5e7fee75-f868-482c-8efb-19b9e8902178 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1537 + speciesSurveyCode: HYME-ITA + weightEnabled: true +- !SpeciesProtocol + id: 27030291-235f-4e36-a7ec-cf93bb72fe8c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1756 + speciesSurveyCode: HYPE-IMM + weightEnabled: true +- !SpeciesProtocol + id: e1d3bad0-b3ee-45f3-86ad-9ac0cfb0cd87 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1755 + speciesSurveyCode: HYPE-LAN + weightEnabled: true +- !SpeciesProtocol + id: 9eb90da4-4211-4e39-ab0b-79ccc0567934 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + speciesReferenceTaxonId: 507 + speciesSurveyCode: ILLE-COI + weightEnabled: true +- !SpeciesProtocol + id: 0e9a1bd8-702d-4c5e-868c-c5e100d039fd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1730 + speciesSurveyCode: LABR-BER + weightEnabled: true +- !SpeciesProtocol + id: 871049a0-0066-4a42-804a-450710a4ea28 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1729 + speciesSurveyCode: LABR-BIM + weightEnabled: true +- !SpeciesProtocol + id: a87dbe55-fa80-43e1-b1b2-c2c2c3136c33 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1728 + speciesSurveyCode: LABR-USZ + weightEnabled: true +- !SpeciesProtocol + id: 23d25cb2-f7b9-4982-9ed8-0ffc9a11f2a7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1231 + speciesSurveyCode: LAMN-NAS + weightEnabled: true +- !SpeciesProtocol + id: a9a4ac29-0fc4-4865-b68a-70bf6133d0df + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 789 + speciesSurveyCode: LAMP-ANZ + weightEnabled: true +- !SpeciesProtocol + id: ace416ed-e0f6-44e5-a202-5c4e91bb4064 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1430 + speciesSurveyCode: LAMP-ATE + weightEnabled: true +- !SpeciesProtocol + id: f5575b06-7de8-49e5-a21a-02e3f6314b6c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1429 + speciesSurveyCode: LAMP-CRO + weightEnabled: true +- !SpeciesProtocol + id: 4b2805f2-dba6-4384-91dc-918be9a85d34 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 4884 + speciesSurveyCode: LAMP-INT + weightEnabled: true +- !SpeciesProtocol + id: a863e666-87e7-4316-a8d7-ee7ea8556f41 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1431 + speciesSurveyCode: LAMP-MAC + weightEnabled: true +- !SpeciesProtocol + id: 2f07128d-613b-49fb-be5b-c2595f8a56ef + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1961 + speciesSurveyCode: LEPI-BOS + weightEnabled: true +- !SpeciesProtocol + id: f603ef0c-7a49-446d-995c-28e74d1fd533 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1768 + speciesSurveyCode: LEPI-CAU + weightEnabled: true +- !SpeciesProtocol + id: 0ec18a17-7091-4904-acda-0fc2e01e4553 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1917 + speciesSurveyCode: LEPI-CAV + weightEnabled: true +- !SpeciesProtocol + id: 1b996e75-ea7b-4812-b2ef-765f28ea58db + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1591 + speciesSurveyCode: LEPI-EQU + weightEnabled: true +- !SpeciesProtocol + id: f80cf899-8703-414b-a089-abbc143e6c4b + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1960 + speciesSurveyCode: LEPI-WHI + weightEnabled: true +- !SpeciesProtocol + id: ad4cb75d-eb32-4248-9ed4-7513a6aa0cb1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1464 + speciesSurveyCode: LEPT-LON + weightEnabled: true +- !SpeciesProtocol + id: e99fcb70-58cd-49bc-8117-c80b8d90c64c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1791 + speciesSurveyCode: LESU-FRI + weightEnabled: true +- !SpeciesProtocol + id: b8e8c832-4655-4c46-9fcd-55d43ca90329 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1986 + speciesSurveyCode: LIMA-LIM + weightEnabled: true +- !SpeciesProtocol + id: bf3ec857-055c-46c4-a501-3ee4d4d29af5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1944 + speciesSurveyCode: LIPA-LIP + weightEnabled: true +- !SpeciesProtocol + id: 34764f4c-3bff-4e54-9696-fdfd8a96d5bd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1943 + speciesSurveyCode: LIPA-RIZ + weightEnabled: true +- !SpeciesProtocol + id: 8bbaf139-7ae6-4568-841d-c561571907dc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1710 + speciesSurveyCode: LITH-MOR + weightEnabled: true +- !SpeciesProtocol + id: cb6f482f-4eb5-4ea4-922e-6b918474c89b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1882 + speciesSurveyCode: LIZA-AUR + weightEnabled: true +- !SpeciesProtocol + id: fcb942bb-5de7-4bb9-969b-4c1d11614177 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1881 + speciesSurveyCode: LIZA-RAM + weightEnabled: true +- !SpeciesProtocol + id: 80b3b2df-6fc1-46ad-b458-de7ec87bcf20 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1435 + speciesSurveyCode: LOBI-GEM + weightEnabled: true +- !SpeciesProtocol + id: 14259044-dec5-4d9e-926d-579364f23ab2 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + speciesReferenceTaxonId: 12582 + speciesSurveyCode: LOLI-FOR + weightEnabled: true +- !SpeciesProtocol + id: 65acaf41-3d4f-49eb-beb3-29511614ba74 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 302 + speciesReferenceTaxonId: 489 + speciesSurveyCode: LOLI-VUL + weightEnabled: true +- !SpeciesProtocol + id: 60649714-4e13-4f8e-8bef-697873b506c4 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2050 + speciesSurveyCode: LOPH-BUD + weightEnabled: true +- !SpeciesProtocol + id: e0033aa4-1aa8-49f1-a3ea-a7fd2fb3afae + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2049 + speciesSurveyCode: LOPH-PIS + weightEnabled: true +- !SpeciesProtocol + id: fb6473ab-9158-420f-9b9c-a9d3719fccf4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1523 + speciesSurveyCode: MACR-BER + weightEnabled: true +- !SpeciesProtocol + id: 74cc607d-6b78-4dd3-bbee-120288ac995c + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1076 + speciesSurveyCode: MACR-PUB + weightEnabled: true +- !SpeciesProtocol + id: 3b1c3be3-a82f-4e8b-889f-67a2867c54d8 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1497 + speciesSurveyCode: MACR-SCO + weightEnabled: true +- !SpeciesProtocol + id: 9b0c6ea3-56da-4a21-9eb6-1cdb114d2127 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1110 + speciesSurveyCode: MAJA-BRA + weightEnabled: true +- !SpeciesProtocol + id: d51e9c5d-346e-447d-b620-3a75aa82fdec + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1530 + speciesSurveyCode: MALA-LAE + weightEnabled: true +- !SpeciesProtocol + id: bc304ca3-a9eb-4c0f-b0fc-608d1ade82b6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2639 + speciesSurveyCode: MAUL-ARG + weightEnabled: true +- !SpeciesProtocol + id: e95c133e-82d3-412b-8763-bdf07c588be1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 6829 + speciesSurveyCode: MAUL-MAU + weightEnabled: true +- !SpeciesProtocol + id: d59303a5-e54f-497b-b64f-af16766ad8af + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2640 + speciesSurveyCode: MAUL-MIC + weightEnabled: true +- !SpeciesProtocol + id: bb5751fa-025b-416c-bad3-04d535f23f00 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1379 + speciesSurveyCode: MAUR-MUE + weightEnabled: true +- !SpeciesProtocol + id: 37abdef3-b99e-4916-86b6-07b335c6f00e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1378 + speciesSurveyCode: MAUR-OLZ + weightEnabled: true +- !SpeciesProtocol + id: acd5f5ca-3275-4794-963b-b40a1158f66d + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1549 + speciesSurveyCode: MELA-AEG + weightEnabled: true +- !SpeciesProtocol + id: 98211463-a374-42eb-80f9-52d7c3f79fd3 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1848 + speciesSurveyCode: MELA-ATL + weightEnabled: true +- !SpeciesProtocol + id: e01878ab-6186-4403-b416-0722f5113985 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2643 + speciesSurveyCode: MELA-BAR + weightEnabled: true +- !SpeciesProtocol + id: 7ff28c83-3aa2-4a33-9300-6cd5a9436c10 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1548 + speciesSurveyCode: MELA-ZUG + weightEnabled: true +- !SpeciesProtocol + id: 260897fb-ddf3-4192-9b8d-d76f2d7e5f87 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1540 + speciesSurveyCode: MERL-MCC + weightEnabled: true +- !SpeciesProtocol + id: 2f2f9af5-5055-477d-b6e7-2bbf56d21e37 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1551 + speciesSurveyCode: MERL-MNG + weightEnabled: true +- !SpeciesProtocol + id: 188f2247-3e7c-43a7-9deb-860af0448ac2 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1988 + speciesSurveyCode: MICR-KIT + weightEnabled: true +- !SpeciesProtocol + id: f3aa55dc-1b35-4c81-bf9f-c93a61e062dd + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1553 + speciesSurveyCode: MICR-POU + weightEnabled: true +- !SpeciesProtocol + id: 3a5ca9f4-a740-4ffd-9ce8-b282934bebbf + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2011 + speciesSurveyCode: MICR-VAR + weightEnabled: true +- !SpeciesProtocol + id: af6fa5f9-563e-44f7-bec5-889f994da609 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2036 + speciesSurveyCode: MOLA-MOL + weightEnabled: true +- !SpeciesProtocol + id: 8f0f22d9-35a1-4369-8540-6205b0967901 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1568 + speciesSurveyCode: MOLV-MAC + weightEnabled: true +- !SpeciesProtocol + id: 9c30812a-fb18-49c4-9512-82f7fd97b9c0 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1566 + speciesSurveyCode: MOLV-MOL + weightEnabled: true +- !SpeciesProtocol + id: bd4e23c6-4600-4555-ba77-dc34c5a7737f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1593 + speciesSurveyCode: MORA-MOR + weightEnabled: true +- !SpeciesProtocol + id: 6cf5e5d8-ce3f-4b52-86e1-8cdd96d5c2b1 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1690 + speciesSurveyCode: MULL-SUR + weightEnabled: true +- !SpeciesProtocol + id: 14f85a73-7592-4690-a88d-46efa514a4e6 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1016 + speciesSurveyCode: MUNI-BAM + weightEnabled: true +- !SpeciesProtocol + id: b18cfa95-eefa-45dd-a7d2-e24f1d530001 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1017 + speciesSurveyCode: MUNI-INT + weightEnabled: true +- !SpeciesProtocol + id: b60270d1-4016-4b51-93da-d2673c5d6703 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1257 + speciesSurveyCode: MUST-AST + weightEnabled: true +- !SpeciesProtocol + id: 37feba63-eef3-4aeb-bb39-ab8222f5b990 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1255 + speciesSurveyCode: MUST-ELZ + weightEnabled: true +- !SpeciesProtocol + id: af6c89d3-b24a-4849-b286-fd4b28cc69af + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2533 + speciesSurveyCode: MYCT-OPZ + weightEnabled: true +- !SpeciesProtocol + id: ac7a0c4e-8c1a-4e5c-bc96-8a170662d227 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1415 + speciesSurveyCode: MYCT-PUN + weightEnabled: true +- !SpeciesProtocol + id: 05cef9a8-c05c-4c2e-927a-44566670eeb2 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1329 + speciesSurveyCode: MYLI-AQU + weightEnabled: true +- !SpeciesProtocol + id: cadf6af1-3118-465e-bc62-7fdd57c1eeb7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1927 + speciesSurveyCode: MYOX-SCU + weightEnabled: true +- !SpeciesProtocol + id: e5d6aea2-3ea6-481d-9334-45471e2e76ed + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1215 + speciesSurveyCode: MYXI-GLU + weightEnabled: true +- !SpeciesProtocol + id: 4fc41b00-5198-4229-b2f5-f874632bc482 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1458 + speciesSurveyCode: NEMI-SCO + weightEnabled: true +- !SpeciesProtocol + id: 995c651c-adb1-41d4-ba55-c18398f3657a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 4392 + speciesSurveyCode: NEOS-MAC + weightEnabled: true +- !SpeciesProtocol + id: cb4f3d2c-5a14-46c3-bb8b-d467af1a3c09 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 299 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 949 + speciesSurveyCode: NEPH-NOR + weightEnabled: true +- !SpeciesProtocol + id: 928917e4-7ac1-4fc9-abb8-61e008245919 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1506 + speciesSurveyCode: NERO-LUM + weightEnabled: true +- !SpeciesProtocol + id: 919a4803-8dba-4fbe-8593-915343f0b016 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1508 + speciesSurveyCode: NERO-OPH + weightEnabled: true +- !SpeciesProtocol + id: ad354d97-590a-4d47-80f5-80f37e70a4fb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1527 + speciesSurveyCode: NEZU-AEQ + weightEnabled: true +- !SpeciesProtocol + id: 6569777c-fa89-43cc-b2bb-ebb485d620ff + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1528 + speciesSurveyCode: NEZU-SCL + weightEnabled: true +- !SpeciesProtocol + id: 631ed5d2-df19-4310-b1ea-c55e60edfb25 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2649 + speciesSurveyCode: NORM-OPE + weightEnabled: true +- !SpeciesProtocol + id: 07b7cff6-f005-43e0-8fce-2626b1275dcd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1483 + speciesSurveyCode: NOTA-BON + weightEnabled: true +- !SpeciesProtocol + id: 1d2dba43-ed7d-4c2e-ad60-1b3124d9763d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 4389 + speciesSurveyCode: NOTO-CAU + weightEnabled: true +- !SpeciesProtocol + id: 18e2eb25-8b9a-4a27-ad81-23f82d9ec810 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1439 + speciesSurveyCode: NOTO-KRO + weightEnabled: true +- !SpeciesProtocol + id: c5155a67-715b-4f2e-9efc-1fdbeea91abd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1448 + speciesSurveyCode: NOTO-RIS + weightEnabled: true +- !SpeciesProtocol + id: 0ac20610-5840-45d6-9d54-9ffafa72273e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1436 + speciesSurveyCode: NOTO-SCZ + weightEnabled: true +- !SpeciesProtocol + id: aa14bb50-ddfd-4cc6-98ad-6f1f9194f708 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 512 + speciesSurveyCode: OCTO-POX + weightEnabled: true +- !SpeciesProtocol + id: bab91772-081d-47f9-a43a-bd4576fcbdef + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 514 + speciesSurveyCode: OCTO-VUL + weightEnabled: true +- !SpeciesProtocol + id: 24684255-0545-4e6e-859d-ebde01872365 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1857 + speciesSurveyCode: OPHI-BAR + weightEnabled: true +- !SpeciesProtocol + id: 0e88b28a-0b7e-4e4b-ac42-07e2bf225961 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 370 + speciesSurveyCode: OSTR-EDU + weightEnabled: true +- !SpeciesProtocol + id: 4427cff4-227b-4812-a5db-d7dc6f07cb9c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1714 + speciesSurveyCode: PAGE-ACA + weightEnabled: true +- !SpeciesProtocol + id: d6377448-e18e-455d-bdb5-246733737a30 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1715 + speciesSurveyCode: PAGE-BOG + weightEnabled: true +- !SpeciesProtocol + id: eb3b06bd-b780-4663-b4a1-af70219f3273 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1713 + speciesSurveyCode: PAGE-ERY + weightEnabled: true +- !SpeciesProtocol + id: 798d7d1b-5fa4-4b3e-98c6-1aa0dac9a02d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1712 + speciesSurveyCode: PAGE-LLZ + weightEnabled: true +- !SpeciesProtocol + id: 803c6e1e-7119-4e9c-9f53-32362da06d3a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1695 + speciesSurveyCode: PAGR-PAG + weightEnabled: true +- !SpeciesProtocol + id: 814d4fbf-3e86-4ab3-91fc-9f59e30153d8 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 299 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 958 + speciesSurveyCode: PALI-MAU + weightEnabled: true +- !SpeciesProtocol + id: 8fb66cef-9f26-49cb-819f-dbd089ada242 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 299 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 957 + speciesSurveyCode: PALI-VUL + weightEnabled: true +- !SpeciesProtocol + id: 80650f4b-676c-49b6-9f0f-cd8636cc1b72 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1444 + speciesSurveyCode: PARA-COR + weightEnabled: true +- !SpeciesProtocol + id: 2180e264-80a8-49fa-a5c9-79f92d9ba1f7 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1028 + speciesSurveyCode: PARA-MOL + weightEnabled: true +- !SpeciesProtocol + id: d0f73995-d333-4a3b-b434-de8694158b98 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 3561 + speciesSurveyCode: PARA-SUL + weightEnabled: true +- !SpeciesProtocol + id: 27f6340b-55cb-442a-986e-59bd60b81f17 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 363 + speciesSurveyCode: PECT-MAX + weightEnabled: true +- !SpeciesProtocol + id: 28262cf3-3ad1-47fe-b996-d1502cd82e14 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1212 + speciesSurveyCode: PETR-MAR + weightEnabled: true +- !SpeciesProtocol + id: d60dc46c-b71a-40b2-b4d6-8f64546c44d5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + speciesReferenceTaxonId: 1837 + speciesSurveyCode: PHOL-GUN + weightEnabled: true +- !SpeciesProtocol + id: 12fbfdf1-2823-4664-b221-923ceed4957f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 622 + speciesReferenceTaxonId: 5857 + speciesSurveyCode: PHOT-PYC + weightEnabled: true +- !SpeciesProtocol + id: d4ba5dca-713c-44d3-a83d-f5d40aed02a7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1964 + speciesSurveyCode: PHRY-NOR + weightEnabled: true +- !SpeciesProtocol + id: 471ca906-f54c-478f-b967-00c104806b7b + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1573 + speciesSurveyCode: PHYC-BLE + weightEnabled: true +- !SpeciesProtocol + id: e1fd0d41-f3e2-4f29-bb12-9130df02ca94 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1990 + speciesSurveyCode: PLAT-FLE + weightEnabled: true +- !SpeciesProtocol + id: 1292b165-baf9-4422-8c60-3b07db4b9cde + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1978 + speciesSurveyCode: PLEU-PLA + weightEnabled: true +- !SpeciesProtocol + id: 28a16551-145b-4728-aa0f-b11b82a46d3e + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1555 + speciesSurveyCode: POLL-POL + weightEnabled: true +- !SpeciesProtocol + id: 41bc4e92-7c41-46b7-baf7-9109fc5975fc + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1556 + speciesSurveyCode: POLL-VIR + weightEnabled: true +- !SpeciesProtocol + id: 513e8173-e3e1-4982-954f-ee0098a9cf70 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1641 + speciesSurveyCode: POLY-AME + weightEnabled: true +- !SpeciesProtocol + id: 8fcce02f-2cf3-471e-b909-e8d753fe2ffc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1372 + speciesSurveyCode: POLY-COR + weightEnabled: true +- !SpeciesProtocol + id: 4281b5cb-d173-4a5b-840e-aaec59ddac41 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 4393 + speciesSurveyCode: POLY-THA + weightEnabled: true +- !SpeciesProtocol + id: 2135b157-f425-46a3-9b14-2a3cddf36645 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 4394 + speciesSurveyCode: POMA-LOZ + weightEnabled: true +- !SpeciesProtocol + id: d6dca117-c892-41d4-a5d5-4d7931405780 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1804 + speciesSurveyCode: POMA-MIN + weightEnabled: true +- !SpeciesProtocol + id: 5c327b55-17ed-4ca1-9d1b-f142edb7511b + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1807 + speciesSurveyCode: POMA-NOR + weightEnabled: true +- !SpeciesProtocol + id: 513a1a2d-8eb9-4851-8197-55d462833eb5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1803 + speciesSurveyCode: POMA-TOZ + weightEnabled: true +- !SpeciesProtocol + id: 14edd421-9fbe-4e44-9947-8a5cb917d9bc + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1957 + speciesSurveyCode: PSET-MAX + weightEnabled: true +- !SpeciesProtocol + id: f1508dbd-7423-4dca-9001-768488ac8bb3 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1306 + speciesSurveyCode: RAJA-BAI + weightEnabled: true +- !SpeciesProtocol + id: a981555a-c328-481d-a796-076283ea0be6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2654 + speciesSurveyCode: RAJA-BAT + weightEnabled: true +- !SpeciesProtocol + id: d6cc7013-8acf-4102-97b2-d2b17129df9a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1301 + speciesSurveyCode: RAJA-BRA + weightEnabled: true +- !SpeciesProtocol + id: 5d45dd7b-c3e4-4a6e-9d14-3262530a5550 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1310 + speciesSurveyCode: RAJA-CIR + weightEnabled: true +- !SpeciesProtocol + id: ce076427-03ef-4c22-a3c7-567250958f23 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1302 + speciesSurveyCode: RAJA-CLA + weightEnabled: true +- !SpeciesProtocol + id: 45ea0f1f-c550-4f3f-9718-b6eb70a0717f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1309 + speciesSurveyCode: RAJA-FUL + weightEnabled: true +- !SpeciesProtocol + id: 8c25b560-5950-4648-b318-eeaeb55443fb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2658 + speciesSurveyCode: RAJA-KUK + weightEnabled: true +- !SpeciesProtocol + id: 5b0d0d96-5704-4b55-a388-47b246fb82c4 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1303 + speciesSurveyCode: RAJA-MIC + weightEnabled: true +- !SpeciesProtocol + id: e8c4ac09-05df-4590-8436-f6bba81a5dc9 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1304 + speciesSurveyCode: RAJA-MON + weightEnabled: true +- !SpeciesProtocol + id: 47ab3120-1420-4892-b25e-a9c1c234f93c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1311 + speciesSurveyCode: RAJA-NAE + weightEnabled: true +- !SpeciesProtocol + id: 77d17669-a239-483d-a1f8-079b044200e7 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1308 + speciesSurveyCode: RAJA-OXY + weightEnabled: true +- !SpeciesProtocol + id: 4a9014b8-1c69-442a-a3ed-a772ddc9cb88 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1318 + speciesSurveyCode: RAJA-UND + weightEnabled: true +- !SpeciesProtocol + id: 9b69ab52-c150-4ae3-88af-bcfbfcf30312 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1575 + speciesSurveyCode: RANI-RAN + weightEnabled: true +- !SpeciesProtocol + id: 0059baf8-9a83-4d14-ad17-01b59cc58006 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 6826 + speciesSurveyCode: REMO-BRA + weightEnabled: true +- !SpeciesProtocol + id: ca1a79e0-c791-4d29-bd4b-ae11fd2eebb6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2021 + speciesSurveyCode: REMO-REM + weightEnabled: true +- !SpeciesProtocol + id: e608c406-0407-49dd-9e68-f422aec83fe3 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 471 + speciesSurveyCode: ROSS-MAC + weightEnabled: true +- !SpeciesProtocol + id: 659a2cfa-1d42-4082-aac9-e50c647be485 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 3788 + speciesSurveyCode: RUVE-PRE + weightEnabled: true +- !SpeciesProtocol + id: 7fcd5f57-e955-42d0-b051-f62fea42fa31 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1351 + speciesSurveyCode: SARD-PIL + weightEnabled: true +- !SpeciesProtocol + id: 149d91f3-2bb1-47e1-8144-bbffa11f2f26 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1775 + speciesSurveyCode: SARD-SAR + weightEnabled: true +- !SpeciesProtocol + id: fe625099-3775-447b-91a2-da795d29c2d6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 3789 + speciesSurveyCode: SCOM-COL + weightEnabled: true +- !SpeciesProtocol + id: cfc891c3-f14e-429e-a13d-afae154b5f2a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1491 + speciesSurveyCode: SCOM-SAU + weightEnabled: true +- !SpeciesProtocol + id: e7a0aab8-6a4d-4b0f-a48b-e9bb59389b28 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1772 + speciesSurveyCode: SCOM-SCO + weightEnabled: true +- !SpeciesProtocol + id: 2f1ac54d-157c-42db-8a54-54235cf75046 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1956 + speciesSurveyCode: SCOP-RHO + weightEnabled: true +- !SpeciesProtocol + id: 4003f562-ee92-4910-b10c-f3ca8e0f83bc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1895 + speciesSurveyCode: SCOR-ELO + weightEnabled: true +- !SpeciesProtocol + id: afb5be55-43dd-42a8-a9b8-afa11ad983b6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1897 + speciesSurveyCode: SCOR-LOP + weightEnabled: true +- !SpeciesProtocol + id: 51457f65-d4ea-44e4-af04-5477c3ccc8e6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1899 + speciesSurveyCode: SCOR-NOT + weightEnabled: true +- !SpeciesProtocol + id: 2852af90-e6f7-448e-b82e-152d990174bd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1894 + speciesSurveyCode: SCOR-PAZ + weightEnabled: true +- !SpeciesProtocol + id: 43da4c13-ece5-4f2f-9f08-37f9c7bfcc5f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1896 + speciesSurveyCode: SCOR-POR + weightEnabled: true +- !SpeciesProtocol + id: aba65cdc-c0f0-4830-b755-a121f35911d9 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1900 + speciesSurveyCode: SCOR-SCR + weightEnabled: true +- !SpeciesProtocol + id: 42561fcc-9eb4-4252-9e2b-96238a1f0793 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1242 + speciesSurveyCode: SCYL-CAN + weightEnabled: true +- !SpeciesProtocol + id: ec28dd01-3d3b-4642-a9a8-5e1b31daf4e1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1243 + speciesSurveyCode: SCYL-STE + weightEnabled: true +- !SpeciesProtocol + id: 8028d2d0-adfd-41f0-9a43-5ffe47363ecc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1280 + speciesSurveyCode: SCYM-RIN + weightEnabled: true +- !SpeciesProtocol + id: 8795b7b0-a0e6-4b95-9e44-69129e11e905 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 6831 + speciesSurveyCode: SEAR-KOE + weightEnabled: true +- !SpeciesProtocol + id: 187d1a13-7479-44e3-b47e-36ac326fad77 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 468 + speciesSurveyCode: SEPI-ELE + weightEnabled: true +- !SpeciesProtocol + id: cb0e95db-93d9-490d-bc3d-95dfbfe99ad3 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 467 + speciesSurveyCode: SEPI-OFF + weightEnabled: true +- !SpeciesProtocol + id: bd46e112-8f7b-4bca-a798-a2e07add427f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 469 + speciesSurveyCode: SEPI-ORB + weightEnabled: true +- !SpeciesProtocol + id: 90d7674d-596b-4c39-b1da-9795b1c59f76 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2564 + speciesSurveyCode: SERI-OLZ + weightEnabled: true +- !SpeciesProtocol + id: 2f6c6867-eab5-4a36-bee8-8239a37b5055 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1627 + speciesSurveyCode: SERR-ANZ + weightEnabled: true +- !SpeciesProtocol + id: 54f8238b-a2a3-46f1-81e0-0532e1c4888e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 2670 + speciesSurveyCode: SERR-BEA + weightEnabled: true +- !SpeciesProtocol + id: 25636ff5-eb25-42cd-bdb5-77cc0e30028c + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1628 + speciesSurveyCode: SERR-CAB + weightEnabled: true +- !SpeciesProtocol + id: 54bd2cb8-0f46-4552-8c32-94dcd2501c9e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1629 + speciesSurveyCode: SERR-HEP + weightEnabled: true +- !SpeciesProtocol + id: 59fdd0cd-fab5-4874-bfea-59583148eab0 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1631 + speciesSurveyCode: SERR-SCR + weightEnabled: true +- !SpeciesProtocol + id: f1a6f27b-d8b6-42f8-99ce-8824c9903495 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 2000 + speciesSurveyCode: SOLE-LAS + weightEnabled: true +- !SpeciesProtocol + id: a790040d-7dac-4102-9b0a-ac04ad14035d + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1997 + speciesSurveyCode: SOLE-SEN + weightEnabled: true +- !SpeciesProtocol + id: 59ddfecd-9575-4a6e-950d-51069b6b6545 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1996 + speciesSurveyCode: SOLE-VUL + weightEnabled: true +- !SpeciesProtocol + id: 31017787-344a-42a9-baa4-d7e50eab0785 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1693 + speciesSurveyCode: SPAR-AUT + weightEnabled: true +- !SpeciesProtocol + id: be7caf8f-d25e-4cbe-b912-828cf6a036eb + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1519 + speciesSurveyCode: SPIN-SPI + weightEnabled: true +- !SpeciesProtocol + id: d9bcd955-f94b-4636-a5b4-045aac82cc5a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1718 + speciesSurveyCode: SPON-CAN + weightEnabled: true +- !SpeciesProtocol + id: 7dc5034d-6878-4966-b806-7b8ac62ae945 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 307 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1356 + speciesSurveyCode: SPRA-SPR + weightEnabled: true +- !SpeciesProtocol + id: 69b586fc-fe3e-4d2c-b22f-fbf1af8c9915 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1266 + speciesSurveyCode: SQUA-ACA + weightEnabled: true +- !SpeciesProtocol + id: 5f807198-6ed0-44e8-b5a5-98731dbae653 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 196 + speciesReferenceTaxonId: 1265 + speciesSurveyCode: SQUA-LUZ + weightEnabled: true +- !SpeciesProtocol + id: d0d51760-4509-4c27-996f-e94f3c719880 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 6833 + speciesSurveyCode: STER-DIA + weightEnabled: true +- !SpeciesProtocol + id: 6aa24ea6-0d40-4afd-b0c8-09d8b78acc50 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1420 + speciesSurveyCode: SYMB-VER + weightEnabled: true +- !SpeciesProtocol + id: b96766cd-5cec-4324-ace6-904542bfdc9a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1739 + speciesSurveyCode: SYMP-BAI + weightEnabled: true +- !SpeciesProtocol + id: 0e03d9cb-b934-479f-a37a-f462b532c3ef + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1738 + speciesSurveyCode: SYMP-MEO + weightEnabled: true +- !SpeciesProtocol + id: 73ecef38-133f-4a02-a5fc-a30b354f2322 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 4424 + speciesSurveyCode: SYMP-ROI + weightEnabled: true +- !SpeciesProtocol + id: d9f0c60b-aa1a-467d-982a-615fe84f9d94 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1743 + speciesSurveyCode: SYMP-ROS + weightEnabled: true +- !SpeciesProtocol + id: ca5e32e0-a3a4-43c7-acfc-9028752bda31 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1479 + speciesSurveyCode: SYNA-KAU + weightEnabled: true +- !SpeciesProtocol + id: dde364b3-783e-462c-9940-1efd5a4cbd7f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1500 + speciesSurveyCode: SYNG-ACU + weightEnabled: true +- !SpeciesProtocol + id: 050c73f6-0cf5-4caf-9292-f3b07498dded + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1499 + speciesSurveyCode: SYNG-NAZ + weightEnabled: true +- !SpeciesProtocol + id: 7c2c8efa-857a-4be6-a499-92b708d345c5 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1502 + speciesSurveyCode: SYNG-ROS + weightEnabled: true +- !SpeciesProtocol + id: f28eee87-b053-4e27-b994-ac8201d773a1 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1504 + speciesSurveyCode: SYNG-TYP + weightEnabled: true +- !SpeciesProtocol + id: 56b7ce1b-a98a-49ba-8061-09b081586490 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 4856 + speciesSurveyCode: TAAN-BAT + weightEnabled: true +- !SpeciesProtocol + id: 1a8cddf9-fc14-49d9-8574-12782ed677d6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 4027 + speciesSurveyCode: TALI-SMZ + weightEnabled: true +- !SpeciesProtocol + id: 38263dc4-1e0c-484d-895a-146043f4a392 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 508 + speciesSurveyCode: TODA-EBL + weightEnabled: true +- !SpeciesProtocol + id: 9d40d329-75d0-4e45-b707-0193e3c21ad9 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 509 + speciesSurveyCode: TODA-SAG + weightEnabled: true +- !SpeciesProtocol + id: 07b68661-c6ac-4d3b-a691-de55970fcdd6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1297 + speciesSurveyCode: TORP-MAR + weightEnabled: true +- !SpeciesProtocol + id: 317f198c-c022-4624-bc4b-3a53fc3ed999 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1298 + speciesSurveyCode: TORP-NOB + weightEnabled: true +- !SpeciesProtocol + id: 74aa4ac7-c446-4f86-8bef-7e79c52c6695 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1906 + speciesSurveyCode: TRAC-CRI + weightEnabled: true +- !SpeciesProtocol + id: 97d7f461-b095-4ca5-a8b7-bc4b9789476a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1759 + speciesSurveyCode: TRAC-DRA + weightEnabled: true +- !SpeciesProtocol + id: 172592bc-be5c-4b37-85c1-e67480b57765 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1663 + speciesSurveyCode: TRAC-MED + weightEnabled: true +- !SpeciesProtocol + id: 2b74249a-72e2-41f1-93a9-67eb3597d09a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1664 + speciesSurveyCode: TRAC-PIC + weightEnabled: true +- !SpeciesProtocol + id: 28a96971-1a01-4047-9f32-d43500ee3b17 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1525 + speciesSurveyCode: TRAC-TRC + weightEnabled: true +- !SpeciesProtocol + id: 1b0fac67-4e39-4663-bbf8-4f6ad08469bc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1662 + speciesSurveyCode: TRAC-TRU + weightEnabled: true +- !SpeciesProtocol + id: 41e5e446-192f-4ddb-95e9-931713b3c32f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1922 + speciesSurveyCode: TRIG-LAS + weightEnabled: true +- !SpeciesProtocol + id: a45d6b1f-f0c4-45f4-a7fa-aeeb19389cc6 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1921 + speciesSurveyCode: TRIG-LUC + weightEnabled: true +- !SpeciesProtocol + id: ffbae362-ebaf-4752-a687-5c16c33e4de6 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1910 + speciesSurveyCode: TRIG-LYR + weightEnabled: true +- !SpeciesProtocol + id: 060544ee-5b70-4b8a-bcb5-e1f14bba14ff + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1559 + speciesSurveyCode: TRIS-ESM + weightEnabled: true +- !SpeciesProtocol + id: 4d1560f5-9c6b-46e9-a854-7878c331f083 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1560 + speciesSurveyCode: TRIS-LUS + weightEnabled: true +- !SpeciesProtocol + id: eb78a209-b96a-4355-98aa-0bf688dbef9e + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + mandatorySampleCategoryId: + - 198 + speciesReferenceTaxonId: 1558 + speciesSurveyCode: TRIS-MIN + weightEnabled: true +- !SpeciesProtocol + id: a9920961-eedc-47e3-8f34-32048c58a1fd + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1683 + speciesSurveyCode: UMBR-CAN + weightEnabled: true +- !SpeciesProtocol + id: d15611ed-5f1f-46b0-a455-940c7b491765 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1346 + speciesSurveyCode: XENO-COP + weightEnabled: true +- !SpeciesProtocol + id: 4a07e9b8-66eb-4bb5-80a1-758d4b393e4a + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1781 + speciesSurveyCode: XIPH-GLA + weightEnabled: true +- !SpeciesProtocol + id: a1fedd09-5a4d-4e39-b550-f48e57230f62 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1966 + speciesSurveyCode: ZEUG-PUN + weightEnabled: true +- !SpeciesProtocol + id: df4a5c58-d72f-4ab7-88cf-898909545e82 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1619 + speciesSurveyCode: ZEUS-FAB + weightEnabled: true +- !SpeciesProtocol + id: 7348e5e1-fc6d-4aa3-90e3-c145b5d3dd46 + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 466 + speciesSurveyCode: SEPI-SPP + weightEnabled: true +- !SpeciesProtocol + id: bdf31428-efaf-470f-a669-adff20e7d2a5 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 470 + speciesSurveyCode: FMSE-PIO + weightEnabled: true +- !SpeciesProtocol + id: 1959678e-b7a3-4e6d-8c72-6dfaf157c379 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1385 + speciesSurveyCode: STOM-BOA + weightEnabled: true +- !SpeciesProtocol + id: 834d516a-227b-42f6-806f-464740069ecc + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 3217 + speciesSurveyCode: PAGE-BEL + weightEnabled: true +- !SpeciesProtocol + id: 43ffa82e-53ec-4a27-84a7-af81b70cdd38 + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1438 + speciesSurveyCode: NOTO-ELO + weightEnabled: true +- !SpeciesProtocol + id: 8108b641-d03a-414d-9a9f-19ded9a9910f + countIfNoFrequencyEnabled: true + lengthStepPmfmId: 306 + speciesReferenceTaxonId: 1414 + speciesSurveyCode: MYCT-OLZ + weightEnabled: true +- !SpeciesProtocol + id: 72fb96c7-0f0b-498a-9e11-c993e23dd717 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 476 + speciesSurveyCode: SEPO-SPP + weightEnabled: true +- !SpeciesProtocol + id: a41af70a-4c67-4886-a549-4a9b37649695 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 7674 + speciesSurveyCode: SEPO-PFE + weightEnabled: true +- !SpeciesProtocol + id: 0416aa98-43e1-405a-b905-e0e129f8c4ee + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 478 + speciesSurveyCode: SEPO-ATL + weightEnabled: true +- !SpeciesProtocol + id: b36a2ed9-f499-4b56-be99-bdac7e65f833 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 480 + speciesSurveyCode: SEPO-LIG + weightEnabled: true +- !SpeciesProtocol + id: e2885cd7-e6bc-434a-9723-16f647e88424 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 7182 + speciesSurveyCode: SEPO-TRI + weightEnabled: true +- !SpeciesProtocol + id: b7b722c0-d9c3-4aaa-81c2-40fa028f4c57 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 484 + speciesSurveyCode: SEPE-NEG + weightEnabled: true +- !SpeciesProtocol + id: 9a0ae767-b49d-40ed-a3ae-17c4480246ed + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 486 + speciesSurveyCode: SEPE-OWE + weightEnabled: true +- !SpeciesProtocol + id: 271b6f11-2132-4dbd-a327-1296d526c936 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 475 + speciesSurveyCode: ROND-MIN + weightEnabled: true +- !SpeciesProtocol + id: 5522f202-bb37-41da-92f7-a364b66d2758 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 474 + speciesSurveyCode: STOL-LEU + weightEnabled: true +- !SpeciesProtocol + id: 489fd8ca-01bd-4412-bf1b-5dba7bc9b604 + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + speciesReferenceTaxonId: 13199 + speciesSurveyCode: ROSS-PAL + weightEnabled: true +- !SpeciesProtocol + id: 7c5163d9-52b0-45f5-94f0-a58b07526a88 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 13115 + speciesSurveyCode: OPTO-CAL + weightEnabled: true +- !SpeciesProtocol + id: 93c8f5a7-5c02-4191-9654-29a57fa3e27f + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 517 + speciesSurveyCode: OCTP-SAL + weightEnabled: true +- !SpeciesProtocol + id: cb4f976d-202d-490a-8c02-a4c381eb9c12 + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1918 + speciesSurveyCode: LEPR-DIE + weightEnabled: true +- !SpeciesProtocol + id: 5e545fbc-da54-47a5-bc58-3786bd6707ef + countIfNoFrequencyEnabled: true + speciesReferenceTaxonId: 1684 + speciesSurveyCode: UMBR-CIR + weightEnabled: true +- !SpeciesProtocol + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + - 174 + - 1430 + speciesReferenceTaxonId: 13294 + speciesSurveyCode: DIPT-FLO + weightEnabled: true +- !SpeciesProtocol + calcifySampleEnabled: true + countIfNoFrequencyEnabled: true + mandatorySampleCategoryId: + - 198 + - 196 + - 174 + - 1430 + speciesReferenceTaxonId: 13293 + speciesSurveyCode: DIPT-INT + weightEnabled: true +version: 3 \ No newline at end of file -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.