diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/Section.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/Section.java index e075b378..8379af07 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/Section.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/redaction/model/Section.java @@ -338,7 +338,6 @@ public class Section { Set expanded = new HashSet<>(); for (var entity : entities) { - System.out.println(entity.getWord()); if (!entity.getType().equals(type) || entity.getTextBefore() == null) { continue; diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/HeadlinesGoldStandardIntegrationTest.java b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/HeadlinesGoldStandardIntegrationTest.java new file mode 100644 index 00000000..bbd3e2cd --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/test/java/com/iqser/red/service/redaction/v1/server/HeadlinesGoldStandardIntegrationTest.java @@ -0,0 +1,422 @@ +package com.iqser.red.service.redaction.v1.server; + +import static org.mockito.Mockito.when; + +import java.io.BufferedReader; +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.time.OffsetDateTime; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.stream.Collectors; + +import org.assertj.core.api.Assertions; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.kie.api.KieServices; +import org.kie.api.builder.KieBuilder; +import org.kie.api.builder.KieFileSystem; +import org.kie.api.builder.KieModule; +import org.kie.api.runtime.KieContainer; +import org.mockito.stubbing.Answer; +import org.springframework.amqp.rabbit.core.RabbitTemplate; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.autoconfigure.EnableAutoConfiguration; +import org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.Import; +import org.springframework.context.annotation.Primary; +import org.springframework.core.io.ClassPathResource; +import org.springframework.test.context.junit4.SpringRunner; + +import com.amazonaws.services.s3.AmazonS3; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.iqser.red.service.persistence.service.v1.api.model.common.JSONPrimitive; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.configuration.Colors; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileType; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.type.DictionaryEntry; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.type.Type; +import com.iqser.red.service.redaction.v1.model.AnalyzeRequest; +import com.iqser.red.service.redaction.v1.model.ChangeType; +import com.iqser.red.service.redaction.v1.model.RedactionLog; +import com.iqser.red.service.redaction.v1.model.StructureAnalyzeRequest; +import com.iqser.red.service.redaction.v1.server.annotate.AnnotationService; +import com.iqser.red.service.redaction.v1.server.client.DictionaryClient; +import com.iqser.red.service.redaction.v1.server.client.LegalBasisClient; +import com.iqser.red.service.redaction.v1.server.client.RulesClient; +import com.iqser.red.service.redaction.v1.server.controller.RedactionController; +import com.iqser.red.service.redaction.v1.server.redaction.service.AnalyzeService; +import com.iqser.red.service.redaction.v1.server.redaction.service.ManualRedactionSurroundingTextService; +import com.iqser.red.service.redaction.v1.server.redaction.utils.ResourceLoader; +import com.iqser.red.service.redaction.v1.server.storage.RedactionStorageService; +import com.iqser.red.storage.commons.StorageAutoConfiguration; +import com.iqser.red.storage.commons.service.StorageService; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.SneakyThrows; +import lombok.ToString; + +@RunWith(SpringRunner.class) +@SpringBootTest(classes = Application.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) +@Import(HeadlinesGoldStandardIntegrationTest.RedactionIntegrationTestConfiguration.class) +public class HeadlinesGoldStandardIntegrationTest { + + private static final String RULES = loadFromClassPath("drools/headlines.drl"); + + private static final String HEADLINE = "headline"; + + @Autowired + private RedactionController redactionController; + + @Autowired + private AnnotationService annotationService; + + @Autowired + private AnalyzeService analyzeService; + + @Autowired + private ObjectMapper objectMapper; + + @MockBean + private RulesClient rulesClient; + + @MockBean + private DictionaryClient dictionaryClient; + + @Autowired + private RedactionStorageService redactionStorageService; + + @Autowired + private StorageService storageService; + + @Autowired + private ManualRedactionSurroundingTextService manualRedactionSurroundingTextService; + + @MockBean + private AmazonS3 amazonS3; + + @MockBean + private RabbitTemplate rabbitTemplate; + + @MockBean + private LegalBasisClient legalBasisClient; + + private final Map> dictionary = new HashMap<>(); + private final Map> dossierDictionary = new HashMap<>(); + private final Map typeColorMap = new HashMap<>(); + private final Map hintTypeMap = new HashMap<>(); + private final Map caseInSensitiveMap = new HashMap<>(); + private final Map recommendationTypeMap = new HashMap<>(); + private final Map rankTypeMap = new HashMap<>(); + private final Colors colors = new Colors(); + private final Map reanlysisVersions = new HashMap<>(); + private final Set deleted = new HashSet<>(); + + private final static String TEST_DOSSIER_TEMPLATE_ID = "123"; + private final static String TEST_DOSSIER_ID = "123"; + private final static String TEST_FILE_ID = "123"; + + + @Test + public void testHeadlineDetection() { + + List metrics = new ArrayList<>(); + metrics.add(getMetrics("files/RSS/01 - CGA100251 - Acute Oral Toxicity (Up and Down Procedure) - Rat (1).pdf", + "files/Headlines/01 - CGA100251 - Acute Oral Toxicity (Up and Down Procedure) - Rat (1)_REDACTION_LOG.json")); + metrics.add(getMetrics("files/Trinexapac/91 Trinexapac-ethyl_RAR_01_Volume_1_2018-02-23.pdf", + "files/Headlines/91 Trinexapac-ethyl_RAR_01_Volume_1_2018-02-23_REDACTION_LOG.json")); + metrics.add(getMetrics("files/Metolachlor/S-Metolachlor_RAR_01_Volume_1_2018-09-06.pdf", "files/Headlines/S-Metolachlor_RAR_01_Volume_1_2018-09-06_REDACTION_LOG.json")); + + float precision = 0; + float recall = 0; + for (var m : metrics) { + precision += m.getPrecision(); + recall += m.getRecall(); + } + + precision = precision / metrics.size(); + recall = recall / metrics.size(); + + System.out.println("Precision is: " + precision + " recall is: " + recall); + + Assertions.assertThat(precision).isGreaterThanOrEqualTo(0.45f); + Assertions.assertThat(recall).isGreaterThanOrEqualTo(0.69f); + + } + + + @SneakyThrows + private Metrics getMetrics(String fileUrl, String redactionLogUrl) { + + ClassPathResource redactionLogResource = new ClassPathResource(redactionLogUrl); + + Set goldStandardHeadlines = new HashSet<>(); + var goldStandardLog = objectMapper.readValue(redactionLogResource.getInputStream(), RedactionLog.class); + goldStandardLog.getRedactionLogEntry().removeIf(r -> !r.isRedacted() || r.getChanges().get(r.getChanges().size() - 1).getType().equals(ChangeType.REMOVED)); + goldStandardLog.getRedactionLogEntry().forEach(e -> goldStandardHeadlines.add(new Headline(e.getPositions().get(0).getPage(), e.getValue()))); + + AnalyzeRequest request = prepareStorage(fileUrl); + analyzeService.analyzeDocumentStructure(new StructureAnalyzeRequest(request.getDossierId(), request.getFileId())); + analyzeService.analyze(request); + + List foundHeadlines = new ArrayList<>(); + var redactionLog = redactionStorageService.getRedactionLog(TEST_DOSSIER_ID, TEST_FILE_ID); + redactionLog.getRedactionLogEntry().forEach(e -> foundHeadlines.add(new Headline(e.getPositions().get(0).getPage(), e.getValue()))); + + Set correct = new HashSet<>(); + Set missing; + Set falsePositive = new HashSet<>(); + for (Headline headline : foundHeadlines) { + if (goldStandardHeadlines.contains(headline)) { + correct.add(headline); + } else { + falsePositive.add(headline); + } + } + + missing = goldStandardHeadlines.stream().filter(h -> !correct.contains(h)).collect(Collectors.toSet()); + + float precision = (float) correct.size() / ((float) correct.size() + (float) falsePositive.size()); + float recall = (float) correct.size() / ((float) correct.size() + (float) missing.size()); + + return new Metrics(precision, recall); + + } + + + @Configuration + @EnableAutoConfiguration(exclude = {RabbitAutoConfiguration.class, StorageAutoConfiguration.class}) + public static class RedactionIntegrationTestConfiguration { + + @Bean + public KieContainer kieContainer() { + + KieServices kieServices = KieServices.Factory.get(); + + KieFileSystem kieFileSystem = kieServices.newKieFileSystem(); + InputStream input = new ByteArrayInputStream(RULES.getBytes(StandardCharsets.UTF_8)); + kieFileSystem.write("src/test/resources/drools/headlines.drl", kieServices.getResources().newInputStreamResource(input)); + KieBuilder kieBuilder = kieServices.newKieBuilder(kieFileSystem); + kieBuilder.buildAll(); + KieModule kieModule = kieBuilder.getKieModule(); + + return kieServices.newKieContainer(kieModule.getReleaseId()); + } + + + @Bean + @Primary + public StorageService inmemoryStorage() { + + return new FileSystemBackedStorageService(); + } + + } + + + @After + public void cleanupStorage() { + + if (this.storageService instanceof FileSystemBackedStorageService) { + ((FileSystemBackedStorageService) this.storageService).clearStorage(); + } + } + + + @Before + public void stubClients() { + + when(rulesClient.getVersion(TEST_DOSSIER_TEMPLATE_ID)).thenReturn(0L); + when(rulesClient.getRules(TEST_DOSSIER_TEMPLATE_ID)).thenReturn(JSONPrimitive.of(RULES)); + + loadDictionaryForTest(); + loadTypeForTest(); + loadNerForTest(); + when(dictionaryClient.getVersion(TEST_DOSSIER_TEMPLATE_ID)).thenReturn(0L); + when(dictionaryClient.getAllTypesForDossierTemplate(TEST_DOSSIER_TEMPLATE_ID, false)).thenReturn(getTypeResponse()); + + when(dictionaryClient.getVersion(TEST_DOSSIER_TEMPLATE_ID)).thenReturn(0L); + + mockDictionaryCalls(null); + mockDictionaryCalls(0L); + + when(dictionaryClient.getColors(TEST_DOSSIER_TEMPLATE_ID)).thenReturn(colors); + } + + + private void mockDictionaryCalls(Long version) { + + when(dictionaryClient.getDictionaryForType(HEADLINE + ":" + TEST_DOSSIER_TEMPLATE_ID, version)).then((Answer) invocation -> getDictionaryResponse(HEADLINE, false)); + + } + + + private void loadDictionaryForTest() { + + dictionary.computeIfAbsent(HEADLINE, v -> new ArrayList<>()); + } + + + private void loadTypeForTest() { + + typeColorMap.put(HEADLINE, "#f90707"); + hintTypeMap.put(HEADLINE, false); + caseInSensitiveMap.put(HEADLINE, false); + recommendationTypeMap.put(HEADLINE, false); + rankTypeMap.put(HEADLINE, 155); + + colors.setSkippedColor("#cccccc"); + colors.setRequestAddColor("#04b093"); + colors.setRequestRemoveColor("#04b093"); + } + + + private List getTypeResponse() { + + return typeColorMap.entrySet() + .stream() + .map(typeColor -> Type.builder() + .id(typeColor.getKey() + ":" + TEST_DOSSIER_TEMPLATE_ID) + .type(typeColor.getKey()) + .dossierTemplateId(TEST_DOSSIER_TEMPLATE_ID) + .hexColor(typeColor.getValue()) + .isHint(hintTypeMap.get(typeColor.getKey())) + .isCaseInsensitive(caseInSensitiveMap.get(typeColor.getKey())) + .isRecommendation(recommendationTypeMap.get(typeColor.getKey())) + .rank(rankTypeMap.get(typeColor.getKey())) + .build()) + + .collect(Collectors.toList()); + } + + + private Type getDictionaryResponse(String type, boolean isDossierDictionary) { + + return Type.builder() + .id(type + ":" + TEST_DOSSIER_TEMPLATE_ID) + .hexColor(typeColorMap.get(type)) + .entries(isDossierDictionary ? toDictionaryEntry(dossierDictionary.get(type)) : toDictionaryEntry(dictionary.get(type))) + .falsePositiveEntries(new ArrayList<>()) + .falseRecommendationEntries(new ArrayList<>()) + .isHint(hintTypeMap.get(type)) + .isCaseInsensitive(caseInSensitiveMap.get(type)) + .isRecommendation(recommendationTypeMap.get(type)) + .rank(rankTypeMap.get(type)) + .build(); + } + + + private List toDictionaryEntry(List entries) { + + if (entries == null) { + entries = Collections.emptyList(); + } + + List dictionaryEntries = new ArrayList<>(); + entries.forEach(entry -> { + dictionaryEntries.add(DictionaryEntry.builder().value(entry).version(reanlysisVersions.getOrDefault(entry, 0L)).deleted(deleted.contains(entry)).build()); + }); + return dictionaryEntries; + } + + + @SneakyThrows + private AnalyzeRequest prepareStorage(String file) { + + return prepareStorage(file, "files/cv_service_empty_response.json"); + } + + + @SneakyThrows + private AnalyzeRequest prepareStorage(String file, String cvServiceResponseFile) { + + ClassPathResource pdfFileResource = new ClassPathResource(file); + ClassPathResource cvServiceResponseFileResource = new ClassPathResource(cvServiceResponseFile); + + return prepareStorage(pdfFileResource.getInputStream(), cvServiceResponseFileResource.getInputStream()); + } + + + @SneakyThrows + private AnalyzeRequest prepareStorage(InputStream fileStream, InputStream cvServiceResponseFileStream) { + + AnalyzeRequest request = AnalyzeRequest.builder() + .dossierTemplateId(TEST_DOSSIER_TEMPLATE_ID) + .dossierId(TEST_DOSSIER_ID) + .fileId(TEST_FILE_ID) + .lastProcessed(OffsetDateTime.now()) + .build(); + + storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.TABLES), cvServiceResponseFileStream); + storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.ORIGIN), fileStream); + + return request; + } + + + private static String loadFromClassPath(String path) { + + URL resource = ResourceLoader.class.getClassLoader().getResource(path); + if (resource == null) { + throw new IllegalArgumentException("could not load classpath resource: drools/rules.drl"); + } + try (BufferedReader br = new BufferedReader(new InputStreamReader(resource.openStream(), StandardCharsets.UTF_8))) { + StringBuilder sb = new StringBuilder(); + String str; + while ((str = br.readLine()) != null) { + sb.append(str).append("\n"); + } + return sb.toString(); + } catch (IOException e) { + throw new IllegalArgumentException("could not load classpath resource: " + path, e); + } + } + + + @SneakyThrows + private void loadNerForTest() { + + ClassPathResource responseJson = new ClassPathResource("files/ner_response.json"); + storageService.storeObject(RedactionStorageService.StorageIdUtils.getStorageId(TEST_DOSSIER_ID, TEST_FILE_ID, FileType.NER_ENTITIES), responseJson.getInputStream()); + } + + + @Data + @EqualsAndHashCode + @AllArgsConstructor + @ToString + private class Metrics { + + private float precision; + private float recall; + + } + + @Data + @EqualsAndHashCode + @AllArgsConstructor + @ToString + private class Headline { + + private int page; + private String headline; + + } + +} diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/drools/headlines.drl b/redaction-service-v1/redaction-service-server-v1/src/test/resources/drools/headlines.drl new file mode 100644 index 00000000..6a326b69 --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/test/resources/drools/headlines.drl @@ -0,0 +1,13 @@ +package drools + +import com.iqser.red.service.redaction.v1.server.redaction.model.Section + +global Section section + + +rule "1: Find headlines" + when + Section(text.length() > 1) + then + section.redactHeadline("headline", 1, "Headline found", "n-a."); + end \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Headlines/01 - CGA100251 - Acute Oral Toxicity (Up and Down Procedure) - Rat (1)_REDACTION_LOG.json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Headlines/01 - CGA100251 - Acute Oral Toxicity (Up and Down Procedure) - Rat (1)_REDACTION_LOG.json new file mode 100644 index 00000000..7f82f26e --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Headlines/01 - CGA100251 - Acute Oral Toxicity (Up and Down Procedure) - Rat (1)_REDACTION_LOG.json @@ -0,0 +1,4831 @@ +{ + "analysisVersion": 1, + "analysisNumber": 1, + "redactionLogEntry": [ + { + "id": "b41f9cb564c758dcd82fa6cb6436bed8", + "type": "logo", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 356, + "y": 727 + }, + "width": 184, + "height": 43, + "page": 1 + } + ], + "sectionNumber": 3, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588212862Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6bacd8c9c26bac79261221521fc45331", + "type": "headline", + "value": "STATEMENT OF DATA CONFIDENTIALITY CLAIMS", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "STATEMENT OF DATA CONFIDENTIALITY CLAIMS", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 139.44, + "y": 764.80005 + }, + "width": 350.93954, + "height": -12.959999, + "page": 2 + } + ], + "sectionNumber": 4, + "textBefore": null, + "textAfter": " This page", + "comments": null, + "startOffset": 0, + "endOffset": 40, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588215772Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "de79ff6137b5bfc901bb23dde1bbcdd9", + "type": "headline", + "value": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 107, + "y": 764.3295 + }, + "width": 413, + "height": -15.329552, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": " Covance CRS", + "comments": null, + "startOffset": 0, + "endOffset": 45, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588216152Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e1531539aa49cd25140690f462b1a852", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 475, + "y": 30 + }, + "width": 60, + "height": 11, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588216522Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "12471d29b12c9a00c46c64a073169b63", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 81, + "y": 269 + }, + "width": 254, + "height": 29, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588216742Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4229496a76bef98d1413d1b9d97001e1", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 88, + "y": 488 + }, + "width": 424, + "height": 54, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588217022Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e9b83535fccc4e59b8ae86a2934b7b52", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 179, + "y": 285 + }, + "width": 33, + "height": 17, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588217252Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "301a85104e17aea75116d602b302e876", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": -2, + "y": 0 + }, + "width": 599, + "height": 842, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588217462Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "66c776f42b7a7cbe9035bffcdd4ca5d6", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 232, + "y": 210 + }, + "width": 220, + "height": 41, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588217682Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a96676325bb74f6aab97a79c1963ce3f", + "type": "signature", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 87, + "y": 327 + }, + "width": 447, + "height": 146, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588217892Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e76b0888f8b4390571662e452c85152b", + "type": "logo", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 90, + "y": 669 + }, + "width": 72, + "height": 26, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588218112Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "30a1a147beb3830efaebd2857ee5b346", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 359, + "y": 281 + }, + "width": 23, + "height": 9, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588218442Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0911e80fd3aadafcd7480e86c4b69d1f", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 89, + "y": 559 + }, + "width": 433, + "height": 80, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588218672Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ea73c2f11bbc89e7217bac27f3e9ee3b", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 90, + "y": 713 + }, + "width": 449, + "height": 50, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588218962Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f15a5bcac8f5dd6af4d63e0cd11450d7", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 195, + "y": 654 + }, + "width": 325, + "height": 39, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588219182Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "225c6156e8b975b5a6d7123065d6efed", + "type": "logo", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 87, + "y": 240 + }, + "width": 109, + "height": 13, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588219412Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "58d1e587411e3190165d4c0f007ddbdc", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "GOOD LABORATORY PRACTICE COMPLIANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 85, + "y": 36 + }, + "width": 125, + "height": 11, + "page": 3 + } + ], + "sectionNumber": 5, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588219622Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a92657500d845e6f4d1ad11584654c1a", + "type": "headline", + "value": "FLAGGING STATEMENT", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "FLAGGING STATEMENT", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 231.12003, + "y": 764.80005 + }, + "width": 167.67566, + "height": -12.959999, + "page": 4 + } + ], + "sectionNumber": 6, + "textBefore": null, + "textAfter": " This page", + "comments": null, + "startOffset": 0, + "endOffset": 18, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588219832Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "60ea0a98c2c648982c56bc22a52d3c04", + "type": "headline", + "value": "QUALITY ASSURANCE STATEMENT", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "QUALITY ASSURANCE STATEMENT", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 192, + "y": 764.80005 + }, + "width": 245.67554, + "height": -12.959999, + "page": 5 + } + ], + "sectionNumber": 7, + "textBefore": null, + "textAfter": " Covance Study", + "comments": null, + "startOffset": 0, + "endOffset": 27, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588220042Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a79928778379fe4a4fd9aa24da8a3297", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "QUALITY ASSURANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 84, + "y": 745 + }, + "width": 442, + "height": 27, + "page": 6 + } + ], + "sectionNumber": 7, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588220252Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3754b10373f78fe6b59f8665e77f0e2e", + "type": "signature", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "QUALITY ASSURANCE STATEMENT", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 84, + "y": 651 + }, + "width": 161, + "height": 51, + "page": 6 + } + ], + "sectionNumber": 7, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588220552Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "fe57ae475a1ac0355eb66a4b65794c69", + "type": "signature", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "QUALITY ASSURANCE STATEMENT", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 356, + "y": 691 + }, + "width": 167, + "height": 24, + "page": 6 + } + ], + "sectionNumber": 7, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588220772Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0d11640e9705da841a7b898b8f71c088", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "QUALITY ASSURANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 84, + "y": 40 + }, + "width": 125, + "height": 12, + "page": 6 + } + ], + "sectionNumber": 7, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588220982Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "32f6a05ab0ae5597bd45df1b5b694456", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "QUALITY ASSURANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": -2, + "y": 0 + }, + "width": 599, + "height": 842, + "page": 6 + } + ], + "sectionNumber": 7, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588221202Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f92d1a93688ff712a34f6e260d8e720d", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "QUALITY ASSURANCE STATEMENT", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 474, + "y": 37 + }, + "width": 59, + "height": 11, + "page": 6 + } + ], + "sectionNumber": 7, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588221412Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "170a06cee938d216502769dc65192b07", + "type": "headline", + "value": "GENERAL INFORMATION", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "GENERAL INFORMATION", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 226.32, + "y": 764.80005 + }, + "width": 177.06888, + "height": -12.959999, + "page": 7 + } + ], + "sectionNumber": 8, + "textBefore": null, + "textAfter": " Contributors The", + "comments": null, + "startOffset": 0, + "endOffset": 19, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588221632Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "630e327a3a1c27ecd6c8fdc2cefcf965", + "type": "headline", + "value": "TABLE OF CONTENTS", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "TABLE OF CONTENTS", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 239.28003, + "y": 764.80005 + }, + "width": 151.00159, + "height": -12.959999, + "page": 9 + } + ], + "sectionNumber": 9, + "textBefore": null, + "textAfter": " STATEMENT OF", + "comments": null, + "startOffset": 0, + "endOffset": 17, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588221842Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "33f83ddf95eaf11320f4b8520de08f82", + "type": "headline", + "value": "TABLE OF CONTENTS", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "TABLE OF CONTENTS", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 638.56006 + }, + "width": 129.07193, + "height": -12, + "page": 9 + } + ], + "sectionNumber": 9, + "textBefore": "GENERAL INFORMATION 7 ", + "textAfter": " 9 1.0", + "comments": null, + "startOffset": 182, + "endOffset": 199, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588222062Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:39:50.258167Z", + "requestedDate": "2022-10-10T11:39:50.243395Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b4f651ea14f5f8991cd85748027fae64", + "type": "headline", + "value": "3.6 Post Mortem", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "3.6 Post Mortem", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 268.24023 + }, + "width": 15.119995, + "height": -12, + "page": 9 + }, + { + "topLeft": { + "x": 176.16, + "y": 268.24023 + }, + "width": 62.197998, + "height": -12, + "page": 9 + } + ], + "sectionNumber": 10, + "textBefore": null, + "textAfter": " Investigations......................................................................17 3.6.1", + "comments": null, + "startOffset": 0, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588222282Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:40:04.910167Z", + "requestedDate": "2022-10-10T11:40:04.896231Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "68f21034845f37ff48f422ecc315dce9", + "type": "headline", + "value": "1.2 Results", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.2 Results", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.75998, + "y": 357.27997 + }, + "width": 16.320007, + "height": -12.480011, + "page": 11 + }, + { + "topLeft": { + "x": 135.11998, + "y": 357.27997 + }, + "width": 40.318558, + "height": -12.480011, + "page": 11 + } + ], + "sectionNumber": 24, + "textBefore": null, + "textAfter": " One female", + "comments": null, + "startOffset": 0, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588222512Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3a0b510c4c2144ac6a3e5c9291c215ff", + "type": "headline", + "value": "1.0 EXECUTIVE SUMMARY", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.0 EXECUTIVE SUMMARY", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 764.80005 + }, + "width": 17.519997, + "height": -12.959999, + "page": 11 + }, + { + "topLeft": { + "x": 135.12001, + "y": 764.80005 + }, + "width": 161.46382, + "height": -12.959999, + "page": 11 + } + ], + "sectionNumber": 11, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 21, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588222802Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "dbc0bc0749a348954ed1516fdd677066", + "type": "headline", + "value": "1.1 Study Design", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1 Study Design", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 736.96 + }, + "width": 16.320007, + "height": -12.479996, + "page": 11 + }, + { + "topLeft": { + "x": 135.12001, + "y": 736.96 + }, + "width": 73.20433, + "height": -12.479996, + "page": 11 + } + ], + "sectionNumber": 23, + "textBefore": null, + "textAfter": " The study", + "comments": null, + "startOffset": 0, + "endOffset": 16, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588223112Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "530cbe7174d462525c1eda04a3761cc2", + "type": "headline", + "value": "1.3 Conclusion", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3 Conclusion", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.75999, + "y": 641.2001 + }, + "width": 16.320007, + "height": -12.479996, + "page": 12 + }, + { + "topLeft": { + "x": 135.12, + "y": 641.2001 + }, + "width": 62.16086, + "height": -12.479996, + "page": 12 + } + ], + "sectionNumber": 25, + "textBefore": null, + "textAfter": " The acute", + "comments": null, + "startOffset": 0, + "endOffset": 14, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588223332Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3db193391bafd61be054a85d1391bf7e", + "type": "headline", + "value": "2.2 Test System", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.2 Test System", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.75998, + "y": 599.9201 + }, + "width": 16.320007, + "height": -12.480011, + "page": 13 + }, + { + "topLeft": { + "x": 135.11998, + "y": 599.9201 + }, + "width": 66.94849, + "height": -12.480011, + "page": 13 + } + ], + "sectionNumber": 28, + "textBefore": null, + "textAfter": " The rat", + "comments": null, + "startOffset": 0, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588223552Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3d7397cae3d1bafa3881e1d367f962f3", + "type": "headline", + "value": "2.1 Purpose", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.1 Purpose", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 740.08 + }, + "width": 16.320007, + "height": -12.479996, + "page": 13 + }, + { + "topLeft": { + "x": 135.12001, + "y": 740.08 + }, + "width": 45.35399, + "height": -12.479996, + "page": 13 + } + ], + "sectionNumber": 27, + "textBefore": null, + "textAfter": " The purpose", + "comments": null, + "startOffset": 0, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588223782Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "32f2057ed69a4c083e0907dac58c2ddb", + "type": "headline", + "value": "2.3 Route of Administration", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3 Route of Administration", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 514.72015 + }, + "width": 16.320007, + "height": -12.480011, + "page": 13 + }, + { + "topLeft": { + "x": 135.12001, + "y": 514.72015 + }, + "width": 135.59624, + "height": -12.480011, + "page": 13 + } + ], + "sectionNumber": 29, + "textBefore": null, + "textAfter": " The rats", + "comments": null, + "startOffset": 0, + "endOffset": 27, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588224002Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f017b0b68061767b4b44e6f1afde074b", + "type": "headline", + "value": "2.0 INTRODUCTION", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.0 INTRODUCTION", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 767.68005 + }, + "width": 17.519997, + "height": -12.959999, + "page": 13 + }, + { + "topLeft": { + "x": 135.12001, + "y": 767.68005 + }, + "width": 111.788956, + "height": -12.959999, + "page": 13 + } + ], + "sectionNumber": 26, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 16, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588224302Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5f0873b8101e449d4b24a233175c3e82", + "type": "headline", + "value": "3.2 Vehicle", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.2 Vehicle", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.75998, + "y": 364.23993 + }, + "width": 16.320007, + "height": -12.480011, + "page": 14 + }, + { + "topLeft": { + "x": 135.11998, + "y": 364.23993 + }, + "width": 40.80336, + "height": -12.480011, + "page": 14 + } + ], + "sectionNumber": 32, + "textBefore": null, + "textAfter": " The vehicle", + "comments": null, + "startOffset": 0, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588224522Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "290b33d5b801f87db64af0660055197f", + "type": "headline", + "value": "3.1 Test Item", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1 Test Item", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.760025, + "y": 740.08 + }, + "width": 16.320007, + "height": -12.479996, + "page": 14 + }, + { + "topLeft": { + "x": 135.12003, + "y": 740.08 + }, + "width": 53.27304, + "height": -12.479996, + "page": 14 + } + ], + "sectionNumber": 31, + "textBefore": null, + "textAfter": " Information supplied", + "comments": null, + "startOffset": 0, + "endOffset": 13, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588224752Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0533288005e6abb2949d53794d9e8ea6", + "type": "headline", + "value": "3.3 Formulation", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.3 Formulation", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.75999, + "y": 306.87994 + }, + "width": 16.320007, + "height": -12.47998, + "page": 14 + }, + { + "topLeft": { + "x": 135.12, + "y": 306.87994 + }, + "width": 70.08145, + "height": -12.47998, + "page": 14 + } + ], + "sectionNumber": 33, + "textBefore": null, + "textAfter": " The test", + "comments": null, + "startOffset": 0, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588224972Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3173f503abcec6ffad03779c42d0cc69", + "type": "headline", + "value": "3.0 MATERIALS AND METHODS", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.0 MATERIALS AND METHODS", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 767.68005 + }, + "width": 17.519997, + "height": -12.959999, + "page": 14 + }, + { + "topLeft": { + "x": 135.12001, + "y": 767.68005 + }, + "width": 193.73906, + "height": -12.959999, + "page": 14 + } + ], + "sectionNumber": 30, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 25, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588225202Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "14996c5dcc5b8d4734298e087b6b2d20", + "type": "headline", + "value": "3.4 Experimental Design", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.4 Experimental Design", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 710.08 + }, + "width": 16.320007, + "height": -12.479996, + "page": 15 + }, + { + "topLeft": { + "x": 135.12001, + "y": 710.08 + }, + "width": 116.64143, + "height": -12.479996, + "page": 15 + } + ], + "sectionNumber": 34, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 23, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588225412Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3e0900b0d71aba1617fbafeae5ca5492", + "type": "headline", + "value": "3.4.1 Animals information", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.4.1 Animals information", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76002, + "y": 683.44006 + }, + "width": 152.12204, + "height": -12, + "page": 15 + } + ], + "sectionNumber": 35, + "textBefore": null, + "textAfter": " Healthy nulliparous", + "comments": null, + "startOffset": 0, + "endOffset": 25, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588225622Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6870ade35ed5129a98d1f4a4d776e7f3", + "type": "headline", + "value": "3.4.2 Animal care and husbandry", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.4.2 Animal care and husbandry", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 461.68018 + }, + "width": 188.874, + "height": -12, + "page": 15 + } + ], + "sectionNumber": 36, + "textBefore": null, + "textAfter": " Animals were", + "comments": null, + "startOffset": 0, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588225832Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "02c472e422fdd8839ad3f2086b07f819", + "type": "headline", + "value": "3.5 Serial Observations", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.5 Serial Observations", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.760124, + "y": 267.28015 + }, + "width": 16.320007, + "height": -12.47998, + "page": 16 + }, + { + "topLeft": { + "x": 135.12012, + "y": 267.28015 + }, + "width": 109.19232, + "height": -12.47998, + "page": 16 + } + ], + "sectionNumber": 38, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 23, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588226052Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "20228b458298dc509ebfd71894ecf3f5", + "type": "headline", + "value": "3.4.3 Dose administration", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.4.3 Dose administration", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76007, + "y": 420.8802 + }, + "width": 148.99199, + "height": -12, + "page": 16 + } + ], + "sectionNumber": 37, + "textBefore": null, + "textAfter": " The appropriate", + "comments": null, + "startOffset": 0, + "endOffset": 25, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588226342Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "844844d3d3bc2b748b4fc74f29dfe901", + "type": "headline", + "value": "3.5.1 Mortality", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.5.1 Mortality", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76012, + "y": 240.64014 + }, + "width": 94.56798, + "height": -12, + "page": 16 + } + ], + "sectionNumber": 39, + "textBefore": null, + "textAfter": " Cages of", + "comments": null, + "startOffset": 0, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588226572Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "537acdd95eaaefaec2d68105130dc2ea", + "type": "headline", + "value": "3.8 Quality Assurance Procedures", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.8 Quality Assurance Procedures", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76, + "y": 307.12 + }, + "width": 16.320007, + "height": -12.47998, + "page": 17 + }, + { + "topLeft": { + "x": 135.12, + "y": 307.12 + }, + "width": 168.71005, + "height": -12.47998, + "page": 17 + } + ], + "sectionNumber": 48, + "textBefore": null, + "textAfter": " Details of", + "comments": null, + "startOffset": 0, + "endOffset": 32, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588226792Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4202563183bd96b05bd59cc4c8fb3b9d", + "type": "headline", + "value": "3.5.2 Clinical observations", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.5.2 Clinical observations", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 765.76 + }, + "width": 152.988, + "height": -12, + "page": 17 + } + ], + "sectionNumber": 40, + "textBefore": null, + "textAfter": " Animals were", + "comments": null, + "startOffset": 0, + "endOffset": 27, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588227012Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "63ffd0eb3b020cfbd398d267f18c0ad3", + "type": "headline", + "value": "3.7 Computer Systems", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.7 Computer Systems", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.75998, + "y": 414.39996 + }, + "width": 16.320007, + "height": -12.480011, + "page": 17 + }, + { + "topLeft": { + "x": 135.11998, + "y": 414.39996 + }, + "width": 104.86275, + "height": -12.480011, + "page": 17 + } + ], + "sectionNumber": 47, + "textBefore": null, + "textAfter": " The computer", + "comments": null, + "startOffset": 0, + "endOffset": 20, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588227582Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a220a7ed3d694580fc5856bb58a52ae3", + "type": "headline", + "value": "3.6.1 Macroscopic pathology", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.6.1 Macroscopic pathology", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.75998, + "y": 498.87997 + }, + "width": 164.15994, + "height": -12, + "page": 17 + } + ], + "sectionNumber": 43, + "textBefore": null, + "textAfter": " All animals", + "comments": null, + "startOffset": 0, + "endOffset": 27, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588227792Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "29c33460d5fa7a8d04055fd1896e6f08", + "type": "headline", + "value": "3.5.3 Body weight", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.5.3 Body weight", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.75998, + "y": 626.5601 + }, + "width": 109.12001, + "height": -12, + "page": 17 + } + ], + "sectionNumber": 41, + "textBefore": null, + "textAfter": " The weight", + "comments": null, + "startOffset": 0, + "endOffset": 17, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588228012Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bf45f01a69c3a583c07f6001575f7234", + "type": "headline", + "value": "4.3 Body Weight", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "4.3 Body Weight", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76002, + "y": 390.39996 + }, + "width": 16.320007, + "height": -12.480011, + "page": 18 + }, + { + "topLeft": { + "x": 135.12003, + "y": 390.39996 + }, + "width": 72.23863, + "height": -12.480011, + "page": 18 + } + ], + "sectionNumber": 52, + "textBefore": null, + "textAfter": " Appendix 2,", + "comments": null, + "startOffset": 0, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588228222Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7cc8a3ac3ae7386f74898ed47126fc1c", + "type": "headline", + "value": "4.1 Mortality", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "4.1 Mortality", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 740.08 + }, + "width": 16.320007, + "height": -12.479996, + "page": 18 + }, + { + "topLeft": { + "x": 135.12001, + "y": 740.08 + }, + "width": 53.281555, + "height": -12.479996, + "page": 18 + } + ], + "sectionNumber": 50, + "textBefore": null, + "textAfter": " Table 1", + "comments": null, + "startOffset": 0, + "endOffset": 13, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588228442Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3239729d4947ef8750fa21b7ee59193d", + "type": "headline", + "value": "4.4 Macroscopic Examination", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "4.4 Macroscopic Examination", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76003, + "y": 291.51996 + }, + "width": 16.320007, + "height": -12.47998, + "page": 18 + }, + { + "topLeft": { + "x": 135.12003, + "y": 291.51996 + }, + "width": 145.44818, + "height": -12.47998, + "page": 18 + } + ], + "sectionNumber": 53, + "textBefore": null, + "textAfter": " Appendix 4", + "comments": null, + "startOffset": 0, + "endOffset": 27, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588228672Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "959a69a9befa0b6c0fa47c19e632f6a7", + "type": "headline", + "value": "4.0 RESULTS", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "4.0 RESULTS", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 767.68005 + }, + "width": 17.519997, + "height": -12.959999, + "page": 18 + }, + { + "topLeft": { + "x": 135.12001, + "y": 767.68005 + }, + "width": 63.649445, + "height": -12.959999, + "page": 18 + } + ], + "sectionNumber": 49, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588228892Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4d009a492e65ae6070df83a714ffbf8b", + "type": "headline", + "value": "4.2 Clinical Signs", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "4.2 Clinical Signs", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76004, + "y": 572.32007 + }, + "width": 16.320007, + "height": -12.480011, + "page": 18 + }, + { + "topLeft": { + "x": 135.12004, + "y": 572.32007 + }, + "width": 76.075455, + "height": -12.480011, + "page": 18 + } + ], + "sectionNumber": 51, + "textBefore": null, + "textAfter": " Appendix 1", + "comments": null, + "startOffset": 0, + "endOffset": 18, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588229172Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0a7abab489ed001e564599df339b9d4a", + "type": "headline", + "value": "5.0 CONCLUSION", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "5.0 CONCLUSION", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 764.80005 + }, + "width": 17.519997, + "height": -12.959999, + "page": 19 + }, + { + "topLeft": { + "x": 135.12001, + "y": 764.80005 + }, + "width": 94.511765, + "height": -12.959999, + "page": 19 + } + ], + "sectionNumber": 54, + "textBefore": null, + "textAfter": " The acute", + "comments": null, + "startOffset": 0, + "endOffset": 14, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588229402Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8968e500a8b3664d3ab87ef445bd9cf6", + "type": "headline", + "value": "6.0 REFERENCES", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "6.0 REFERENCES", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 764.80005 + }, + "width": 17.519997, + "height": -12.959999, + "page": 20 + }, + { + "topLeft": { + "x": 135.12001, + "y": 764.80005 + }, + "width": 94.12416, + "height": -12.959999, + "page": 20 + } + ], + "sectionNumber": 55, + "textBefore": null, + "textAfter": " OECD Guideline", + "comments": null, + "startOffset": 0, + "endOffset": 14, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588229622Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ef8d4bd4b2e8c8478482350bd25cb3d7", + "type": "headline", + "value": "TABLES SECTION", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "TABLES SECTION", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 253.92001, + "y": 764.80005 + }, + "width": 121.63989, + "height": -12.959999, + "page": 21 + } + ], + "sectionNumber": 56, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 14, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588229852Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "37cee5f3ba927d0b126c957b25549179", + "type": "headline", + "value": "TABLE 1 Mortality Data", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "TABLE 1 Mortality Data", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 121.68, + "y": 503.91998 + }, + "width": 53.759987, + "height": -12.479996, + "page": 22 + }, + { + "topLeft": { + "x": 215.28, + "y": 503.91998 + }, + "width": 83.27768, + "height": -12.479996, + "page": 22 + } + ], + "sectionNumber": 70, + "textBefore": null, + "textAfter": " * The", + "comments": null, + "startOffset": 0, + "endOffset": 22, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588230072Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c5182532407db5a98e3680cf665f03a8", + "type": "headline", + "value": "APPENDICES SECTION", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDICES SECTION", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 236.88, + "y": 764.80005 + }, + "width": 155.9599, + "height": -12.959999, + "page": 23 + } + ], + "sectionNumber": 71, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 18, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588230292Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9adc14260604fa79a8cbe70d62ef9cb6", + "type": "headline", + "value": "APPENDIX 1 Signs Associated with Dosing", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDIX 1 Signs Associated with Dosing", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 121.68, + "y": 503.91998 + }, + "width": 254.87512, + "height": -12.479996, + "page": 24 + } + ], + "sectionNumber": 81, + "textBefore": null, + "textAfter": " Only animals", + "comments": null, + "startOffset": 0, + "endOffset": 39, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588230512Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "dfdefbed33bdad22404dc28af422be8a", + "type": "headline", + "value": "APPENDIX 1 Signs Associated with Dosing (cont)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDIX 1 Signs Associated with Dosing (cont)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 121.68, + "y": 503.91998 + }, + "width": 76.78837, + "height": -12.479996, + "page": 25 + }, + { + "topLeft": { + "x": 229.68, + "y": 503.91998 + }, + "width": 196.79706, + "height": -12.479996, + "page": 25 + } + ], + "sectionNumber": 91, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588230722Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "80048119dde8be5018f89c2f486daafd", + "type": "headline", + "value": "APPENDIX 2 Individual Body Weight (g)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDIX 2 Individual Body Weight (g)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 121.68, + "y": 501.03998 + }, + "width": 245.51334, + "height": -12.479996, + "page": 26 + } + ], + "sectionNumber": 104, + "textBefore": null, + "textAfter": " * Prior", + "comments": null, + "startOffset": 0, + "endOffset": 37, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588230942Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "19cd1b5c99036c6f6cc203bd1a500380", + "type": "headline", + "value": "APPENDIX 3 Individual Body Weight Change (g)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDIX 3 Individual Body Weight Change (g)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 121.68, + "y": 501.03998 + }, + "width": 291.35333, + "height": -12.479996, + "page": 27 + } + ], + "sectionNumber": 117, + "textBefore": null, + "textAfter": " - Not", + "comments": null, + "startOffset": 0, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588231172Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "1ce7a3f5c1117b3b88cd8ac9499ef606", + "type": "headline", + "value": "APPENDIX 4 Macroscopic Findings", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDIX 4 Macroscopic Findings", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 121.68, + "y": 503.91998 + }, + "width": 215.7691, + "height": -12.479996, + "page": 28 + } + ], + "sectionNumber": 139, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588231382Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "645c0b100059bd8d692f37eacf14f720", + "type": "headline", + "value": "APPENDIX 5 Certificate of Analysis", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDIX 5 Certificate of Analysis", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 765.27997 + }, + "width": 216.7236, + "height": -12.479996, + "page": 29 + } + ], + "sectionNumber": 140, + "textBefore": null, + "textAfter": " syngenta GLP", + "comments": null, + "startOffset": 0, + "endOffset": 34, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588231592Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3b0c9aff63ecb4c945a55c66075859f6", + "type": "headline", + "value": "CGA 100251", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "CGA 100251", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 288, + "y": 534.82745 + }, + "width": 40.049927, + "height": -10.827423, + "page": 30 + } + ], + "sectionNumber": 141, + "textBefore": "100251 MES 630/1 ", + "textAfter": " CGA 26423", + "comments": null, + "startOffset": 21, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588231802Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:41:01.642701Z", + "requestedDate": "2022-10-10T11:41:01.631112Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6f4474461e96a27847aa79e21ea7dc93", + "type": "headline", + "value": "CGA 100251", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "CGA 100251", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 291, + "y": 667.97406 + }, + "width": 21.856628, + "height": -12.97406, + "page": 30 + }, + { + "topLeft": { + "x": 316, + "y": 668.3759 + }, + "width": 30, + "height": -12.3759, + "page": 30 + } + ], + "sectionNumber": 141, + "textBefore": null, + "textAfter": " MES 630/1", + "comments": null, + "startOffset": 0, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588232012Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:43:23.82223Z", + "requestedDate": "2022-10-10T11:43:23.811375Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "289629484146fb54f2c09d6cb3a4a2d5", + "type": "headline", + "value": "CGA 100251", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "CGA 100251", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 207, + "y": 410.8824 + }, + "width": 40.049927, + "height": -10.882385, + "page": 30 + } + ], + "sectionNumber": 141, + "textBefore": "— Content of ", + "textAfter": " * -", + "comments": null, + "startOffset": 399, + "endOffset": 409, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588232232Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:41:07.50703Z", + "requestedDate": "2022-10-10T11:41:07.489352Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bffc092877c659395a7999826c4f1cdd", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "APPENDIX 5 Certificate of Analysis", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 90, + "y": 134 + }, + "width": 450, + "height": 636, + "page": 30 + } + ], + "sectionNumber": 140, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588232442Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b0f4f19635bbec4b8161c140cd2f2d3c", + "type": "headline", + "value": "APPENDIX 6 GLP Compliance Statement", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDIX 6 GLP Compliance Statement", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76001, + "y": 765.27997 + }, + "width": 249.35074, + "height": -12.479996, + "page": 31 + } + ], + "sectionNumber": 142, + "textBefore": null, + "textAfter": " ae Department", + "comments": null, + "startOffset": 0, + "endOffset": 35, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588232662Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a325178e3b1188d616467cbe88e454be", + "type": "headline", + "value": "GOOD LABORATORY PRACTICE", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "GOOD LABORATORY PRACTICE", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 234, + "y": 636.96014 + }, + "width": 157.05005, + "height": -12.960144, + "page": 32 + } + ], + "sectionNumber": 144, + "textBefore": null, + "textAfter": " STATEMENT OF", + "comments": null, + "startOffset": 0, + "endOffset": 24, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588232932Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "44cb66d8c6436da850c2c9996b23d591", + "type": "headline", + "value": "THE DEPARTMENT OF HEALTH OF THE GOVERNMENT OF THE UNITED KINGDOM", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "THE DEPARTMENT OF HEALTH OF THE GOVERNMENT\nOF THE UNITED KINGDOM", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 180, + "y": 672.61774 + }, + "width": 266.125, + "height": -12.617752, + "page": 32 + }, + { + "topLeft": { + "x": 249, + "y": 660.996 + }, + "width": 128.775, + "height": -12.995956, + "page": 32 + } + ], + "sectionNumber": 143, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 64, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588233152Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bfe4921e930b74d8ebfb2f3f457f71fc", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "APPENDIX 6 GLP Compliance Statement", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 90, + "y": 117 + }, + "width": 450, + "height": 653, + "page": 32 + } + ], + "sectionNumber": 142, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588233352Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ef18362ea58a3235ab96bbd46321fb31", + "type": "headline", + "value": "3.6 Post Mortem Investigations", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.6 Post Mortem", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 89.76, + "y": 542.8395 + }, + "width": 16.32, + "height": 11.572875, + "page": 17 + }, + { + "topLeft": { + "x": 135.12, + "y": 542.8395 + }, + "width": 149.2872, + "height": 11.572875, + "page": 17 + } + ], + "sectionNumber": 42, + "textBefore": null, + "textAfter": " All surviving", + "comments": null, + "startOffset": 0, + "endOffset": 30, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:38:23.588227232Z" + }, + { + "analysisNumber": 3, + "type": "CHANGED", + "dateTime": "2022-10-10T11:42:52.061730355Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:42:51.681Z", + "requestedDate": "2022-10-10T11:42:51.681232Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "3.6 Post Mortem Investigations" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "cdfc26a047ad2c161db0c817dbdb223c", + "type": "manual", + "value": "Certificate of Analysis", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 260, + "y": 674.20294 + }, + "width": 116.07498, + "height": 15.263537, + "page": 30 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:41:35.114Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:41:35.114Z", + "requestedDate": "2022-10-10T11:41:35.114Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + } + ], + "legalBasis": [ + { + "name": "n-a.", + "description": "n-a.", + "reason": "n-a." + } + ], + "dictionaryVersion": 12, + "dossierDictionaryVersion": 1, + "rulesVersion": 3, + "legalBasisVersion": 2 +} \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Headlines/91 Trinexapac-ethyl_RAR_01_Volume_1_2018-02-23_REDACTION_LOG.json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Headlines/91 Trinexapac-ethyl_RAR_01_Volume_1_2018-02-23_REDACTION_LOG.json new file mode 100644 index 00000000..d7e56dfd --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Headlines/91 Trinexapac-ethyl_RAR_01_Volume_1_2018-02-23_REDACTION_LOG.json @@ -0,0 +1,13485 @@ +{ + "analysisVersion": 1, + "analysisNumber": 1, + "redactionLogEntry": [ + { + "id": "838781874e966a1798c89b17b39ce659", + "type": "headline", + "value": "1.1 Context in which the renewal assessment report was prepared", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1 Context in which the renewal assessment report was prepared", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 668.1894 + }, + "width": 322.98685, + "height": -10.929367, + "page": 8 + } + ], + "sectionNumber": 9, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283232962Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e55e7d1fc5fded34996c61a48d13a740", + "type": "headline", + "value": "1.1.2 Arrangements between rapporteur Member State and co-rapporteur Member State", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1.2 Arrangements between rapporteur Member State and co-rapporteur Member State", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 319.65942 + }, + "width": 425.50845, + "height": -10.929382, + "page": 8 + } + ], + "sectionNumber": 11, + "textBefore": null, + "textAfter": " Latvia, acting", + "comments": null, + "startOffset": 0, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283235652Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "1fd3b727ecba39c98e038b7d5f836c6d", + "type": "headline", + "value": "1.1.3 EU Regulatory history for use in Plant Protection Products", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1.3 EU Regulatory history for use in Plant Protection Products", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 266.22937 + }, + "width": 309.31674, + "height": -10.929382, + "page": 8 + } + ], + "sectionNumber": 12, + "textBefore": null, + "textAfter": " Trinexapac was", + "comments": null, + "startOffset": 0, + "endOffset": 64, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283235802Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ab0a095403ba7eb9acad7c748aa7ad64", + "type": "headline", + "value": "1.1.1 Purpose for which the renewal assessment report was prepared", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1.1 Purpose for which the renewal assessment report was prepared", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 649.2294 + }, + "width": 329.00748, + "height": -10.929367, + "page": 8 + } + ], + "sectionNumber": 10, + "textBefore": null, + "textAfter": " Trinexapac is", + "comments": null, + "startOffset": 0, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283236192Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b0a95fd421d8a0f51b77330e76d3f01d", + "type": "headline", + "value": "1.1.4 Evaluations carried out under other regulatory contexts", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1.4 Evaluations carried out under other regulatory contexts", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 642.2694 + }, + "width": 294.81012, + "height": -10.929367, + "page": 9 + } + ], + "sectionNumber": 13, + "textBefore": null, + "textAfter": " The RMS", + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283236422Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "eabdb204ae02a2ae1d3ffaeb7f14bb7e", + "type": "headline", + "value": "1.2.2 Producer or producers of the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.2.2 Producer or producers of the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 202.6294 + }, + "width": 247.68033, + "height": -10.929382, + "page": 10 + } + ], + "sectionNumber": 18, + "textBefore": null, + "textAfter": " See 1.2.1", + "comments": null, + "startOffset": 0, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283236572Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8e44c366d663333d792828d35f110d6b", + "type": "headline", + "value": "1.2.1 Name and address of applicant(s) for approval of the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.2.1 Name and address of applicant(s) for approval of the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 711.7494 + }, + "width": 358.9747, + "height": -10.929367, + "page": 10 + } + ], + "sectionNumber": 17, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 75, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283236732Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ffb4e91b4199eff833ec2fcaad2838e2", + "type": "headline", + "value": "1.2 Applicant(s) information", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.2 Applicant(s) information", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 754.7094 + }, + "width": 149.16586, + "height": -10.929359, + "page": 10 + } + ], + "sectionNumber": 14, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 28, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283236882Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "319477cab9ac18c5532dd0a7bc8b59d7", + "type": "headline", + "value": "1.3.2 Chemical name (IUPAC and CA nomenclature)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.2 Chemical name (IUPAC and CA nomenclature)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 582.2394 + }, + "width": 256.5234, + "height": -10.929352, + "page": 11 + } + ], + "sectionNumber": 25, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 47, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283237032Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b18e8a619602cb07bf7e55d1e60e157b", + "type": "headline", + "value": "1.3.4 CAS, EC and CIPAC numbers", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.4 CAS, EC and CIPAC numbers", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 350.01938 + }, + "width": 177.16785, + "height": -10.929352, + "page": 11 + } + ], + "sectionNumber": 27, + "textBefore": null, + "textAfter": " CAS: 95266-40-3", + "comments": null, + "startOffset": 0, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283237182Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "03cd9a9d6fc540d0ff8cf3030a09ee51", + "type": "headline", + "value": "1.3 Identity of the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3 Identity of the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 697.46936 + }, + "width": 177.5101, + "height": -10.929367, + "page": 11 + } + ], + "sectionNumber": 20, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283237352Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c4b16f91e4568a26e0c22c8b9ee26346", + "type": "headline", + "value": "1.3.3 Producer's development code numbers", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.3 Producer's development code numbers", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 448.53937 + }, + "width": 214.44998, + "height": -10.929352, + "page": 11 + } + ], + "sectionNumber": 26, + "textBefore": null, + "textAfter": " CGA 163935", + "comments": null, + "startOffset": 0, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283237502Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6108674c4bb7019889f4d15e121d7dc8", + "type": "headline", + "value": "1.3.1 Common name proposed or ISO-accepted and synonyms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.1 Common name proposed or ISO-accepted and synonyms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 654.5094 + }, + "width": 299.23163, + "height": -10.929367, + "page": 11 + } + ], + "sectionNumber": 21, + "textBefore": null, + "textAfter": " Trinexapac-ethyl", + "comments": null, + "startOffset": 0, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283237652Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e6ade5bdcde5fba6d3d1d34abc111de5", + "type": "headline", + "value": "1.3.5 Molecular and structural formulae, molecular mass", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.5 Molecular and structural formulae, molecular mass", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 225.30939 + }, + "width": 274.7156, + "height": -10.929382, + "page": 11 + } + ], + "sectionNumber": 33, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283237792Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "503db568638d82005e165d730dddfb3f", + "type": "headline", + "value": "1.2.3 Information relating to the collective provision of dossiers", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.2.3 Information relating to the collective provision of dossiers", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.7094 + }, + "width": 303.06802, + "height": -10.929359, + "page": 11 + } + ], + "sectionNumber": 19, + "textBefore": null, + "textAfter": " See 1.2.1", + "comments": null, + "startOffset": 0, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283237942Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "877b0ed9c3c4509f049d168da63c779d", + "type": "headline", + "value": "1.3.8 Identity and content of additives (such as stabilisers) and impurities", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.8 Identity and content of additives (such as stabilisers) and impurities", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 454.67938 + }, + "width": 349.52438, + "height": -10.929352, + "page": 12 + } + ], + "sectionNumber": 36, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 76, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283238092Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4a27965ac4bc070c9466fe9090b64887", + "type": "headline", + "value": "1.3.9 Analytical profile of batches", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.9 Analytical profile of batches", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 177.78937 + }, + "width": 164.31729, + "height": -10.929382, + "page": 12 + } + ], + "sectionNumber": 40, + "textBefore": null, + "textAfter": " CONFIDENTIAL information", + "comments": null, + "startOffset": 0, + "endOffset": 35, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283238252Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "cd0e72f39d6f1aff32c7b10ab3857c6a", + "type": "headline", + "value": "1.3.8.2 Significant impurities", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.8.2 Significant impurities", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 339.45938 + }, + "width": 141.74483, + "height": -10.929352, + "page": 12 + } + ], + "sectionNumber": 38, + "textBefore": null, + "textAfter": " CONFIDENTIAL information", + "comments": null, + "startOffset": 0, + "endOffset": 30, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283238392Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "aa08466137f3730973847f684ea2f263", + "type": "headline", + "value": "1.3.6 Method of manufacture (synthesis pathway) of the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.6 Method of manufacture (synthesis pathway) of the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 599.15936 + }, + "width": 347.31644, + "height": -10.929352, + "page": 12 + } + ], + "sectionNumber": 34, + "textBefore": null, + "textAfter": " CONFIDENTIAL information", + "comments": null, + "startOffset": 0, + "endOffset": 71, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283238542Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "1188cbd3fcb36cff0a22413d041f4aa9", + "type": "headline", + "value": "1.3.7 Specification of purity of the active substance in g/kg", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.7 Specification of purity of the active substance in g/kg", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 526.9194 + }, + "width": 279.57703, + "height": -10.929352, + "page": 12 + } + ], + "sectionNumber": 35, + "textBefore": null, + "textAfter": " 950 g/kg", + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283238682Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "cc44d534126212540a636625fd4085d8", + "type": "headline", + "value": "1.3.8.3 Relevant impurities", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.8.3 Relevant impurities", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 267.3094 + }, + "width": 132.55664, + "height": -10.929382, + "page": 12 + } + ], + "sectionNumber": 39, + "textBefore": null, + "textAfter": " For the", + "comments": null, + "startOffset": 0, + "endOffset": 27, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283238822Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "73bda4264dae9b5f56bb35137e130021", + "type": "headline", + "value": "1.3.8.1 Additives", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.8.1 Additives", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 411.69937 + }, + "width": 84.65697, + "height": -10.929352, + "page": 12 + } + ], + "sectionNumber": 37, + "textBefore": null, + "textAfter": " CONFIDENTIAL information", + "comments": null, + "startOffset": 0, + "endOffset": 17, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283238962Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0596812460ae817606f287e1bd5224aa", + "type": "headline", + "value": "1.4.1 Applicant", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.1 Applicant", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 726.7494 + }, + "width": 78.54704, + "height": -10.929367, + "page": 13 + } + ], + "sectionNumber": 42, + "textBefore": null, + "textAfter": " Name: Syngenta", + "comments": null, + "startOffset": 0, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283239262Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "891a37512f629020893f9a0307eb095b", + "type": "headline", + "value": "1.4 Information on the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4 Information on the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.7094 + }, + "width": 239.49973, + "height": -10.929359, + "page": 13 + } + ], + "sectionNumber": 41, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 47, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283239412Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "fa22339d01398dbf1ac65d9d922da9b1", + "type": "headline", + "value": "1.4.2 Producer of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.2 Producer of the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 486.23715 + }, + "width": 223.55795, + "height": -10.447144, + "page": 13 + } + ], + "sectionNumber": 43, + "textBefore": null, + "textAfter": " Name: Syngenta", + "comments": null, + "startOffset": 0, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283239732Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "dff75113696feb739118e3c4ab628d5e", + "type": "headline", + "value": "1.4.4.2 Information on the active substances", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.4.2 Information on the active substances", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 635.06714 + }, + "width": 212.2904, + "height": -10.447144, + "page": 14 + } + ], + "sectionNumber": 54, + "textBefore": null, + "textAfter": " The active", + "comments": null, + "startOffset": 0, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283240032Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "2e3660d4884600cd2f21a2d6cb18336a", + "type": "headline", + "value": "1.4.4.3 Information on safeners, synergists and co-formulants", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.4.3 Information on safeners, synergists and co-formulants", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 209.58716 + }, + "width": 294.214, + "height": -10.447144, + "page": 14 + } + ], + "sectionNumber": 55, + "textBefore": null, + "textAfter": " CONFIDENTIAL information", + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283240172Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "2bce5a2a47a517a46431330a9048a086", + "type": "headline", + "value": "1.4.4.1 Composition of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.4.1 Composition of the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 707.78937 + }, + "width": 247.40869, + "height": -10.929367, + "page": 14 + } + ], + "sectionNumber": 46, + "textBefore": null, + "textAfter": " Confidential information", + "comments": null, + "startOffset": 0, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283240322Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "987acde824537306bfb45ca83acd86cf", + "type": "headline", + "value": "1.4.6 Function", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.6 Function", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 696.9871 + }, + "width": 74.2861, + "height": -10.447144, + "page": 15 + } + ], + "sectionNumber": 57, + "textBefore": null, + "textAfter": " Plant growth", + "comments": null, + "startOffset": 0, + "endOffset": 14, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283240472Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d5eacac5f1442e228f3446587a08af45", + "type": "headline", + "value": "1.4.8 Effects on harmful organisms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.8 Effects on harmful organisms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 448.7794 + }, + "width": 171.14001, + "height": -10.929352, + "page": 15 + } + ], + "sectionNumber": 59, + "textBefore": null, + "textAfter": " Trinexapac-ethyl, present", + "comments": null, + "startOffset": 0, + "endOffset": 34, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283240622Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e47b8ceb9348a22c39f5e2fbff83f863", + "type": "headline", + "value": "1.4.7 Field of use envisaged", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.7 Field of use envisaged", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 581.7594 + }, + "width": 134.45407, + "height": -10.929352, + "page": 15 + } + ], + "sectionNumber": 58, + "textBefore": null, + "textAfter": " Agriculture. A8587F", + "comments": null, + "startOffset": 0, + "endOffset": 28, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283240762Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "657ca15f20378916d184de4fc1155f15", + "type": "headline", + "value": "1.5 Detailed uses of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.5 Detailed uses of the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 298.53937 + }, + "width": 241.05637, + "height": -10.929382, + "page": 15 + } + ], + "sectionNumber": 60, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283240902Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "89baac9241232271dccba2d5144aef6c", + "type": "headline", + "value": "1.4.5 Type and code of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.5 Type and code of the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.2272 + }, + "width": 248.03363, + "height": -10.447144, + "page": 15 + } + ], + "sectionNumber": 56, + "textBefore": null, + "textAfter": " Micro-emulsion (ME)", + "comments": null, + "startOffset": 0, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283241052Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "706f1f89975b8303c80d84e213669d45", + "type": "headline", + "value": "1.5.1 Details of representative uses", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.5.1 Details of representative uses", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 508.10938 + }, + "width": 168.63585, + "height": -10.929359, + "page": 16 + } + ], + "sectionNumber": 67, + "textBefore": null, + "textAfter": " Remarks: (a)", + "comments": null, + "startOffset": 0, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283241192Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ff50c0d405f58b7a7e813cd3dc4981a2", + "type": "headline", + "value": "1.5.4 Overview on authorisations in EU Member States", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.5.4 Overview on authorisations in EU Member States", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 619.46936 + }, + "width": 265.41058, + "height": -10.929367, + "page": 17 + } + ], + "sectionNumber": 70, + "textBefore": null, + "textAfter": " Trinexapac-ethyl containing", + "comments": null, + "startOffset": 0, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283241492Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "05d216eb9d707a2d771ca13714ad8d0b", + "type": "headline", + "value": "1.5.2 Further information on representative uses", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.5.2 Further information on representative uses", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 753.6294 + }, + "width": 234.91212, + "height": -10.929359, + "page": 17 + } + ], + "sectionNumber": 68, + "textBefore": null, + "textAfter": " Please refer", + "comments": null, + "startOffset": 0, + "endOffset": 48, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283241642Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4d39b51743e0813dfc959129c212ef9e", + "type": "headline", + "value": "2 Summary of active substance hazard and of product risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2 Summary of active substance hazard and of product risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 703.2294 + }, + "width": 346.53125, + "height": -10.929367, + "page": 18 + } + ], + "sectionNumber": 71, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 67, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283241802Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "2e6dd0ca4cb4f6699ea81535cc6c440a", + "type": "headline", + "value": "2.1.1 Summary of identity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.1.1 Summary of identity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 617.3094 + }, + "width": 129.2984, + "height": -10.929367, + "page": 18 + } + ], + "sectionNumber": 73, + "textBefore": null, + "textAfter": " Trinexapac-ethyl is", + "comments": null, + "startOffset": 0, + "endOffset": 25, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283241942Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "98dd5fa288e1d181a41af0c28026e3eb", + "type": "headline", + "value": "2.1 Identity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.1 Identity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 660.2694 + }, + "width": 69.46161, + "height": -10.929367, + "page": 18 + } + ], + "sectionNumber": 72, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283242182Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9ab9cef438726776888c16d3ec4f965a", + "type": "headline", + "value": "2.2 Physical and chemical properties", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.2 Physical and chemical properties", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 768.6294 + }, + "width": 186.98244, + "height": -10.929359, + "page": 19 + } + ], + "sectionNumber": 74, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283242352Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9cb730129ae62cdbc3b094f045ae1bed", + "type": "headline", + "value": "2.2.1 Summary of physical and chemical properties of the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.2.1 Summary of physical and chemical properties of the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 725.6694 + }, + "width": 355.6372, + "height": -10.929367, + "page": 19 + } + ], + "sectionNumber": 75, + "textBefore": null, + "textAfter": " Summary and", + "comments": null, + "startOffset": 0, + "endOffset": 73, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283242502Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "39d8470e1bb3c9c841f018d162ed049a", + "type": "headline", + "value": "2.3.1 Summary of effectiveness", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3.1 Summary of effectiveness", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 238.6294 + }, + "width": 151.81999, + "height": -10.929382, + "page": 20 + } + ], + "sectionNumber": 78, + "textBefore": null, + "textAfter": " Trinexapac-ethyl acts", + "comments": null, + "startOffset": 0, + "endOffset": 30, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283242652Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c63ae51dad547c274c1af33693df91e4", + "type": "headline", + "value": "2.3 Data on application and efficacy", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3 Data on application and efficacy", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 281.58936 + }, + "width": 183.65938, + "height": -10.929382, + "page": 20 + } + ], + "sectionNumber": 77, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283242812Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "09503494afdf315008b83a2e74a7a392", + "type": "headline", + "value": "2.2.2 Summary of physical and chemical properties of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.2.2 Summary of physical and chemical properties of the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 768.6294 + }, + "width": 394.95398, + "height": -10.929359, + "page": 20 + } + ], + "sectionNumber": 76, + "textBefore": null, + "textAfter": " Physical, chemical", + "comments": null, + "startOffset": 0, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283242962Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "159adbfd75bc15c1224a0f569f621816", + "type": "headline", + "value": "2.4.1 Summary of methods and precautions concerning handling, storage, transport or fire", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.4.1 Summary of methods and precautions concerning handling, storage, transport or fire", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 275.70935 + }, + "width": 432.3023, + "height": -10.929382, + "page": 21 + } + ], + "sectionNumber": 83, + "textBefore": null, + "textAfter": " Sufficient information", + "comments": null, + "startOffset": 0, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283243112Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e83062929224448eb0ce0c0a8629a44d", + "type": "headline", + "value": "2.3.2 Summary of information on the development of resistance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3.2 Summary of information on the development of resistance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 768.6294 + }, + "width": 304.88965, + "height": -10.929359, + "page": 21 + } + ], + "sectionNumber": 79, + "textBefore": null, + "textAfter": " The development", + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283243252Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9ea2b4588666ebb4f76b5aa4b2323348", + "type": "headline", + "value": "2.3.3 Summary of adverse effects on treated crops", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3.3 Summary of adverse effects on treated crops", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 627.3894 + }, + "width": 241.06743, + "height": -10.929367, + "page": 21 + } + ], + "sectionNumber": 80, + "textBefore": null, + "textAfter": " Trinexapac-ethyl containing", + "comments": null, + "startOffset": 0, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283243392Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "63065558d36b28ddfa1fecb1c70a1517", + "type": "headline", + "value": "2.3.4 Summary of observations on other undesirable or unintended side-effects", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3.4 Summary of observations on other undesirable or unintended side-effects", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 537.9594 + }, + "width": 376.2165, + "height": -10.929352, + "page": 21 + } + ], + "sectionNumber": 81, + "textBefore": null, + "textAfter": " Minimum waiting", + "comments": null, + "startOffset": 0, + "endOffset": 77, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283243622Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e4016a029cd20284f63e2f2398b87f75", + "type": "headline", + "value": "2.4 Further information", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.4 Further information", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 318.69934 + }, + "width": 128.36, + "height": -10.929382, + "page": 21 + } + ], + "sectionNumber": 82, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 23, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283243832Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7392d5ababe4e7e91bb9d5c61dd6adb2", + "type": "headline", + "value": "10.6 Hydrogen cianide gas may develop in the headspace of containers at normal storage.", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "10.6 Hydrogen cianide gas may develop in the headspace of containers at normal storage.", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 191.57, + "y": 178.67822 + }, + "width": 290.0026, + "height": -9.658203, + "page": 24 + } + ], + "sectionNumber": 84, + "textBefore": null, + "textAfter": " Wear full", + "comments": null, + "startOffset": 0, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283243972Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:46:52.889075Z", + "requestedDate": "2022-10-10T11:46:52.872981Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7699793041ba25b6c6765721299ea55d", + "type": "headline", + "value": "2.4.2 Summary of procedures for destruction or decontamination", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.4.2 Summary of procedures for destruction or decontamination", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 768.6294 + }, + "width": 313.09235, + "height": -10.929359, + "page": 26 + } + ], + "sectionNumber": 85, + "textBefore": null, + "textAfter": " Active substance", + "comments": null, + "startOffset": 0, + "endOffset": 62, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283244112Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c432182af58ae882185ca408b7d6c752", + "type": "headline", + "value": "2.4.3 Summary of emergency measures in case of an accident", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.4.3 Summary of emergency measures in case of an accident", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 675.6294 + }, + "width": 292.9886, + "height": -10.929367, + "page": 27 + } + ], + "sectionNumber": 86, + "textBefore": null, + "textAfter": " Active substance", + "comments": null, + "startOffset": 0, + "endOffset": 58, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283244252Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "415b0058277b80fe8902279a9027cf90", + "type": "paragraph-headline", + "value": "neutralisation procedure", + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.4.3 Summary of emergency measures in case of an accident", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 769.1071 + }, + "width": 107.289154, + "height": -10.447144, + "page": 28 + } + ], + "sectionNumber": 86, + "textBefore": "A 8587 F ", + "textAfter": " Neutralisation is", + "comments": null, + "startOffset": 1892, + "endOffset": 1916, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283244392Z" + }, + { + "analysisNumber": 7, + "type": "REMOVED", + "dateTime": "2022-10-10T11:48:01.352193501Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false + }, + { + "id": "c67bb9e21a30eb210810324c7777bb77", + "type": "headline", + "value": "2.5 Methods of analysis", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5 Methods of analysis", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 687.14935 + }, + "width": 124.97073, + "height": -10.929367, + "page": 28 + } + ], + "sectionNumber": 87, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 23, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283244542Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "51aa6ab9ef52ee65a8673ecae0de177a", + "type": "headline", + "value": "2.5.1 Methods used for the generation of pre-authorisation data", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5.1 Methods used for the generation of pre-authorisation data", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 644.1894 + }, + "width": 305.0423, + "height": -10.929367, + "page": 28 + } + ], + "sectionNumber": 105, + "textBefore": null, + "textAfter": " A validated", + "comments": null, + "startOffset": 0, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283244692Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b0c6277d4d1eba4fc571bb8d89a0aa5e", + "type": "headline", + "value": "2.5.2 Methods for post control and monitoring purposes", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5.2 Methods for post control and monitoring purposes", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 768.6294 + }, + "width": 269.10895, + "height": -10.929359, + "page": 31 + } + ], + "sectionNumber": 106, + "textBefore": null, + "textAfter": " The criteria", + "comments": null, + "startOffset": 0, + "endOffset": 54, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283244832Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "712711e1578e851c0510d21311be90e8", + "type": "headline", + "value": "2.5.2.1 Methods for residue determination in food/feed of plant origin", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5.2.1 Methods for residue determination in food/feed of plant origin", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 677.4271 + }, + "width": 295.48206, + "height": -10.447144, + "page": 31 + } + ], + "sectionNumber": 114, + "textBefore": null, + "textAfter": " For residue", + "comments": null, + "startOffset": 0, + "endOffset": 70, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283244972Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6960c378c69c348c2dd7ee265d3d113f", + "type": "headline", + "value": "2.5.2.3 Methods for the determination of the active substance and/or metabolites in soil", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5.2.3 Methods for the determination of the active substance and/or metabolites in soil", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 315.69714 + }, + "width": 375.21375, + "height": -10.447144, + "page": 32 + } + ], + "sectionNumber": 122, + "textBefore": null, + "textAfter": " For the", + "comments": null, + "startOffset": 0, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283245112Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "917e863e1650399d3640a97ef656b642", + "type": "headline", + "value": "2.5.2.4 Metods for the determination of the active substance and/or metabolites in water", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5.2.4 Metods for the determination of the active substance and/or metabolites in water", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 472.19714 + }, + "width": 379.7057, + "height": -10.447144, + "page": 33 + } + ], + "sectionNumber": 129, + "textBefore": null, + "textAfter": " For the", + "comments": null, + "startOffset": 0, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283245572Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "76d1adcc5418fef1624fc77c299e429c", + "type": "headline", + "value": "5.2.5 Methods for the determination of the active substance and/or metabolites in air", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "5.2.5 Methods for the determination of the active substance and/or metabolites in air", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 641.90717 + }, + "width": 373.02252, + "height": -10.447144, + "page": 34 + } + ], + "sectionNumber": 133, + "textBefore": null, + "textAfter": " The proposed", + "comments": null, + "startOffset": 0, + "endOffset": 85, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283245792Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "af695849fc41ee3bc71593ef8a0a2f78", + "type": "headline", + "value": "2.5.2.6 Analytical methods (residue) for body fluids and tissues (Annex IIA 4.2.5; Annex IIIA 5.2)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5.2.6 Analytical methods (residue) for body fluids and tissues (Annex IIA 4.2.5; Annex IIIA 5.2)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 372.21713 + }, + "width": 27.489601, + "height": -10.447144, + "page": 34 + }, + { + "topLeft": { + "x": 128.66, + "y": 372.21713 + }, + "width": 383.51993, + "height": -10.447144, + "page": 34 + } + ], + "sectionNumber": 137, + "textBefore": null, + "textAfter": " In comparison", + "comments": null, + "startOffset": 0, + "endOffset": 98, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283245932Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ddc4fe79b2fd6a74ba58564700bffc46", + "type": "headline", + "value": "2.6 Effects on human and animal health", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 768.6294 + }, + "width": 202.37218, + "height": -10.929359, + "page": 36 + } + ], + "sectionNumber": 138, + "textBefore": null, + "textAfter": " The toxicological", + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283246072Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7a82746290e51f8361209983dc4b9454", + "type": "headline", + "value": "2.6.1 Summary of absorption, distribution, metabolism and excretion in mammals", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.1 Summary of absorption, distribution, metabolism and excretion in mammals", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 532.1994 + }, + "width": 391.97314, + "height": -10.929352, + "page": 36 + } + ], + "sectionNumber": 139, + "textBefore": null, + "textAfter": " No new", + "comments": null, + "startOffset": 0, + "endOffset": 78, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283246212Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7abffea271de1fb03734a3f8aed94f1a", + "type": "headline", + "value": "D., 2017).", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "D., 2017).", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 116.967964, + "y": 458.1218 + }, + "width": 40.702034, + "height": -10.531799, + "page": 38 + } + ], + "sectionNumber": 140, + "textBefore": null, + "textAfter": " The purpose", + "comments": null, + "startOffset": 0, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283246362Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:48:33.343887Z", + "requestedDate": "2022-10-10T11:48:33.326505Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6de538e45189570cc61de3759dd64b63", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.6.1 Summary of absorption, distribution, metabolism and excretion in mammals", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 72, + "y": 629 + }, + "width": 142, + "height": 115, + "page": 38 + } + ], + "sectionNumber": 139, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283246502Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b895021acd73e41a498919782ec7f8b1", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.6.1 Summary of absorption, distribution, metabolism and excretion in mammals", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 330, + "y": 628 + }, + "width": 149, + "height": 109, + "page": 38 + } + ], + "sectionNumber": 139, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283246652Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "599596be5505ce7e7dc6932f7ee7585c", + "type": "headline", + "value": "C., 2006),", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "C., 2006),", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 292.35468, + "y": 591.4418 + }, + "width": 41.52533, + "height": -10.531799, + "page": 39 + } + ], + "sectionNumber": 142, + "textBefore": null, + "textAfter": " however, not", + "comments": null, + "startOffset": 0, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283246882Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:48:41.477503Z", + "requestedDate": "2022-10-10T11:48:41.45952Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "81d4d471023c34a6609a6f1ce942b260", + "type": "headline", + "value": "2.6.2 Summary of acute toxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.2 Summary of acute toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 768.6294 + }, + "width": 155.69504, + "height": -10.929359, + "page": 39 + } + ], + "sectionNumber": 141, + "textBefore": null, + "textAfter": " Trinexapac-ethyl was", + "comments": null, + "startOffset": 0, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283247032Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "03fa37c652a54f2c9bf1a0f7937101d0", + "type": "headline", + "value": "J., 2017)", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "J., 2017)", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 175.04875, + "y": 557.0018 + }, + "width": 36.997925, + "height": -10.531799, + "page": 39 + } + ], + "sectionNumber": 156, + "textBefore": null, + "textAfter": " trinexapac-ethyl tech.", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283247182Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:48:45.334254Z", + "requestedDate": "2022-10-10T11:48:45.317318Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "10a8ffca889633e43d50440360a9a71d", + "type": "headline", + "value": "2.6.3 Summary of short term toxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.3 Summary of short term toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 768.6294 + }, + "width": 180.50194, + "height": -10.929359, + "page": 41 + } + ], + "sectionNumber": 167, + "textBefore": null, + "textAfter": " All studies", + "comments": null, + "startOffset": 0, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283247322Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "106c0ce1b8f000a8d4704ae2ca200e0a", + "type": "headline", + "value": "A., 1999),", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "A., 1999),", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 578.9618 + }, + "width": 41.126, + "height": -10.531799, + "page": 44 + } + ], + "sectionNumber": 168, + "textBefore": null, + "textAfter": " the reduction", + "comments": null, + "startOffset": 0, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283247472Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:48:57.271834Z", + "requestedDate": "2022-10-10T11:48:57.25642Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f8a1a5280b059efdcee1ec7f2f4e16ae", + "type": "headline", + "value": "A., 1988)", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "A., 1988)", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 159.48392, + "y": 289.95178 + }, + "width": 38.162766, + "height": -10.531799, + "page": 45 + } + ], + "sectionNumber": 171, + "textBefore": null, + "textAfter": " and one", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283247632Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:49:12.376643Z", + "requestedDate": "2022-10-10T11:49:12.362627Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "eef2528cd67e06595c00325b3b40a27f", + "type": "headline", + "value": "C., 1989)", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "C., 1989)", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 328.72195, + "y": 289.95178 + }, + "width": 38.624725, + "height": -10.531799, + "page": 45 + } + ], + "sectionNumber": 172, + "textBefore": null, + "textAfter": " were considered", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283247782Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:49:09.088555Z", + "requestedDate": "2022-10-10T11:49:09.072705Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "1dbe3f091ea7025791a5982ed92a986e", + "type": "headline", + "value": "F., 1989)", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "F., 1989)", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 305.83, + "y": 341.7018 + }, + "width": 39.07669, + "height": -10.53183, + "page": 45 + } + ], + "sectionNumber": 170, + "textBefore": null, + "textAfter": " was rejected", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283247932Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:49:05.163578Z", + "requestedDate": "2022-10-10T11:49:05.144218Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d78c3013bd8eabc14da8430050633d12", + "type": "headline", + "value": "2.6.4 Summary of genotoxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.4 Summary of genotoxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 432.57938 + }, + "width": 150.05362, + "height": -10.929352, + "page": 45 + } + ], + "sectionNumber": 169, + "textBefore": null, + "textAfter": " Trinexapac-ethyl (CGA", + "comments": null, + "startOffset": 0, + "endOffset": 29, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283248082Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "90080a4ef6f1449c4bbd0e0910623ecf", + "type": "headline", + "value": "M., 2010)", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "M., 2010)", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 205.81651, + "y": 431.9418 + }, + "width": 39.710175, + "height": -10.531799, + "page": 46 + } + ], + "sectionNumber": 176, + "textBefore": null, + "textAfter": " under metabolic-activation", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283248232Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:49:24.894817Z", + "requestedDate": "2022-10-10T11:49:24.874883Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c31ffec51f19d98564b691f9ce975c0f", + "type": "headline", + "value": "2009).", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "2009).", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 449.1018 + }, + "width": 25.889977, + "height": -10.531799, + "page": 46 + } + ], + "sectionNumber": 175, + "textBefore": null, + "textAfter": " Trinexapac-ethyl tech.", + "comments": null, + "startOffset": 0, + "endOffset": 6, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283248392Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:49:28.31954Z", + "requestedDate": "2022-10-10T11:49:28.305156Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8d012ea7bc824f8929948facb857400d", + "type": "headline", + "value": "I., 2017", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "I., 2017", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 250.92778, + "y": 708.7118 + }, + "width": 31.672867, + "height": -10.531799, + "page": 46 + } + ], + "sectionNumber": 173, + "textBefore": null, + "textAfter": " and Gilby", + "comments": null, + "startOffset": 0, + "endOffset": 8, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283248542Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:49:19.014273Z", + "requestedDate": "2022-10-10T11:49:19.002429Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "31be28ba0f1ae2aec12c9b14379ce323", + "type": "headline", + "value": "G., 2015)", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "G., 2015)", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 258.25986, + "y": 613.4318 + }, + "width": 39.966827, + "height": -10.531799, + "page": 46 + } + ], + "sectionNumber": 174, + "textBefore": null, + "textAfter": " in order", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283248702Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:49:22.160165Z", + "requestedDate": "2022-10-10T11:49:22.144752Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "99acbecfe34b3a24c182bf75d82a9e4d", + "type": "headline", + "value": "J., 2010)", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "J., 2010)", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 163.54352, + "y": 414.6618 + }, + "width": 36.62317, + "height": -10.531799, + "page": 46 + } + ], + "sectionNumber": 212, + "textBefore": null, + "textAfter": " gave the", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283248852Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:49:31.508121Z", + "requestedDate": "2022-10-10T11:49:31.490012Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "73487c77e5072d31948e2836897c46a5", + "type": "headline", + "value": "2.6.5 Summary of long term toxicity and carcinogenicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.5 Summary of long term toxicity and carcinogenicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 178.02942 + }, + "width": 270.9416, + "height": -10.929382, + "page": 50 + } + ], + "sectionNumber": 217, + "textBefore": null, + "textAfter": " One 52/104-week", + "comments": null, + "startOffset": 0, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283248992Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "32df1d0209b2bc49deab382fb937a7c0", + "type": "headline", + "value": "2.6.6 Summary of reproductive toxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.6 Summary of reproductive toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 389.13937 + }, + "width": 191.1776, + "height": -10.929352, + "page": 52 + } + ], + "sectionNumber": 227, + "textBefore": null, + "textAfter": " This section", + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283249132Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d40c9709130b777b752fbf24b62113d5", + "type": "headline", + "value": "E, 1999", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "E, 1999", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 474.4038, + "y": 178.11182 + }, + "width": 31.573273, + "height": -10.531799, + "page": 54 + } + ], + "sectionNumber": 235, + "textBefore": null, + "textAfter": " and Krinke", + "comments": null, + "startOffset": 0, + "endOffset": 7, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283249282Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:49:54.148663Z", + "requestedDate": "2022-10-10T11:49:54.132255Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ee241a1f4f170ae1a744197454ed76de", + "type": "headline", + "value": "2.6.7 Summary of neurotoxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.7 Summary of neurotoxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 407.13937 + }, + "width": 155.53256, + "height": -10.929352, + "page": 54 + } + ], + "sectionNumber": 228, + "textBefore": null, + "textAfter": " Trinexapac-ethyl has", + "comments": null, + "startOffset": 0, + "endOffset": 30, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283249422Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ab93313f27a4ab5ff1ddf6f91c58a0b4", + "type": "headline", + "value": "2.6.8 Summary of further toxicological studies on the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 537.59937 + }, + "width": 334.4879, + "height": -10.929352, + "page": 56 + } + ], + "sectionNumber": 236, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 70, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283249702Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "71b2aab4475a42b5940dfc1a718da238", + "type": "headline", + "value": "2.6.8.2 Mechanistic data", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.8.2 Mechanistic data", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 303.8194 + }, + "width": 120.404495, + "height": -10.929382, + "page": 57 + } + ], + "sectionNumber": 242, + "textBefore": null, + "textAfter": " No data", + "comments": null, + "startOffset": 0, + "endOffset": 24, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283249842Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "62d60743caa4a691d3d45eb1c6a936ce", + "type": "headline", + "value": "2.6.8.3 Studies on endocrine disruption", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.8.3 Studies on endocrine disruption", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 231.54938 + }, + "width": 189.57011, + "height": -10.929382, + "page": 57 + } + ], + "sectionNumber": 243, + "textBefore": null, + "textAfter": " The notifier", + "comments": null, + "startOffset": 0, + "endOffset": 39, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283249992Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "955645b483b24349333ca9ba662d6ce4", + "type": "headline", + "value": "E., 1990)", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "E., 1990)", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 436.74283, + "y": 155.19177 + }, + "width": 38.273865, + "height": -10.531799, + "page": 59 + } + ], + "sectionNumber": 244, + "textBefore": null, + "textAfter": " (for details", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283250202Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:50:34.516037Z", + "requestedDate": "2022-10-10T11:50:34.502293Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "76f8140f56311dac425a925d6757522a", + "type": "headline", + "value": "2.6.9 Summary of toxicological data on impurities and metabolites", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.9 Summary of toxicological data on impurities and metabolites", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 768.6294 + }, + "width": 317.79895, + "height": -10.929359, + "page": 61 + } + ], + "sectionNumber": 245, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283250342Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "1497155eea3d9d33ef9f7356e30907b9", + "type": "headline", + "value": "2.6.9.1 Metabolites", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.9.1 Metabolites", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 725.6694 + }, + "width": 94.96834, + "height": -10.929367, + "page": 61 + } + ], + "sectionNumber": 301, + "textBefore": null, + "textAfter": " The ADME", + "comments": null, + "startOffset": 0, + "endOffset": 19, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283250482Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3d92cdb47e7ca4342828320cb8b2d555", + "type": "headline", + "value": "2.6.9.2 Impurities", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.9.2 Impurities", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 408.2194 + }, + "width": 89.56975, + "height": -10.929352, + "page": 76 + } + ], + "sectionNumber": 303, + "textBefore": null, + "textAfter": " The issue", + "comments": null, + "startOffset": 0, + "endOffset": 18, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283250632Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f1b0e3583c4a511962a5519931c33618", + "type": "headline", + "value": "C., 2012)", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "C., 2012)", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 275.29916, + "y": 467.4818 + }, + "width": 37.92752, + "height": -10.531799, + "page": 76 + } + ], + "sectionNumber": 302, + "textBefore": "(JMPR, 2014: Carpenter ", + "textAfter": " which was", + "comments": null, + "startOffset": 1104, + "endOffset": 1113, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283250772Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:51:00.723226Z", + "requestedDate": "2022-10-10T11:51:00.708599Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4e5ad9ea9491bdefdefafd29bec09e17", + "type": "headline", + "value": "2.6.10 Summary of medical data and information", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.10 Summary of medical data and information", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 335.97937 + }, + "width": 232.8536, + "height": -10.929382, + "page": 76 + } + ], + "sectionNumber": 304, + "textBefore": null, + "textAfter": " The Occupational", + "comments": null, + "startOffset": 0, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283250912Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "fff8ab1aa12a73869092b3f2fc11b42e", + "type": "headline", + "value": "C., 2012)", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "C., 2012)", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 308.17947, + "y": 675.2318 + }, + "width": 38.887207, + "height": -10.531799, + "page": 76 + } + ], + "sectionNumber": 302, + "textBefore": null, + "textAfter": " is referred", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283251052Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:50:56.829827Z", + "requestedDate": "2022-10-10T11:50:56.811744Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "93bc22bd2a2c1e315679f88f8304a039", + "type": "headline", + "value": "2.6.11 Toxicological end point for assessment of risk following long-term dietary exposure – ADI", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.11 Toxicological end point for assessment of risk following long-term dietary exposure – ADI", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 541.6794 + }, + "width": 453.31052, + "height": -10.929352, + "page": 77 + } + ], + "sectionNumber": 317, + "textBefore": null, + "textAfter": " For Annex", + "comments": null, + "startOffset": 0, + "endOffset": 96, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283251192Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8d6a0a6a40f37325a65d20516fa88337", + "type": "headline", + "value": "2.6.14 Summary of product exposure and risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.14 Summary of product exposure and risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 606.9594 + }, + "width": 270.95273, + "height": -10.929367, + "page": 80 + } + ], + "sectionNumber": 341, + "textBefore": null, + "textAfter": " Trinexapac-ethyl 250", + "comments": null, + "startOffset": 0, + "endOffset": 54, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283251632Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "30741ac54e682117c0f179d34c9b4aed", + "type": "headline", + "value": "2.7 Residues", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7 Residues", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.7094 + }, + "width": 73.63472, + "height": -10.929359, + "page": 83 + } + ], + "sectionNumber": 342, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283251782Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0199748f1e38cf080d70e01ba98348a7", + "type": "headline", + "value": "2.7.1 Summary of storage stability of residues", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.1 Summary of storage stability of residues", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 727.2272 + }, + "width": 211.61658, + "height": -10.447144, + "page": 83 + } + ], + "sectionNumber": 363, + "textBefore": null, + "textAfter": " Studies investigating", + "comments": null, + "startOffset": 0, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283251922Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "342defe9ab1ffffdfb0214cf6bd66c65", + "type": "headline", + "value": "2.8 times", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "2.8 times", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 155.58412, + "y": 149.66681 + }, + "width": 37.39981, + "height": -10.526794, + "page": 84 + } + ], + "sectionNumber": 365, + "textBefore": null, + "textAfter": " higher than", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283252152Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:52:12.31332Z", + "requestedDate": "2022-10-10T11:52:12.296834Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d74b758ac0cd9b1cf610206ac5563d9c", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.8 times", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 71, + "y": 146 + }, + "width": 422, + "height": 625, + "page": 87 + } + ], + "sectionNumber": 365, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283252462Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6c5da8325bbd786b2437ba6bf7c73b41", + "type": "headline", + "value": "2.7.3 Definition of the residue", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.3 Definition of the residue", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 343.77713 + }, + "width": 142.80296, + "height": -10.447113, + "page": 91 + } + ], + "sectionNumber": 420, + "textBefore": null, + "textAfter": " In the", + "comments": null, + "startOffset": 0, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283252612Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d2604c5b81a3b199286afce8def15e4f", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.3 Definition of the residue", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 204, + "y": 499 + }, + "width": 126, + "height": 91, + "page": 92 + } + ], + "sectionNumber": 420, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283252752Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "14e4731ffa435ae695ca3d29a23230a3", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.3 Definition of the residue", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 204, + "y": 644 + }, + "width": 79, + "height": 67, + "page": 93 + } + ], + "sectionNumber": 420, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283252902Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e058dac80f7a189b0f94287c0e4f2f1e", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.3 Definition of the residue", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 204, + "y": 221 + }, + "width": 128, + "height": 53, + "page": 97 + } + ], + "sectionNumber": 420, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283253042Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ed18f20a6d276c58f9f0d641fa5312de", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.3 Definition of the residue", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 71, + "y": 358 + }, + "width": 280, + "height": 109, + "page": 99 + } + ], + "sectionNumber": 420, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283253452Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "60b9aa700609f5570e40a6cfb396e538", + "type": "headline", + "value": "CGA179500.", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "CGA179500.", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 580.0418 + }, + "width": 52.578835, + "height": -10.531799, + "page": 100 + } + ], + "sectionNumber": 479, + "textBefore": null, + "textAfter": " As the", + "comments": null, + "startOffset": 0, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283253592Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:52:42.374366Z", + "requestedDate": "2022-10-10T11:52:42.356591Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "53997037e819c35d1333fee9710f0cc9", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "CGA179500.", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 204, + "y": 278 + }, + "width": 106, + "height": 54, + "page": 101 + } + ], + "sectionNumber": 479, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283253812Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "48c4cf2b74606e699cc839b94b3d4ebf", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "CGA179500.", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 207, + "y": 555 + }, + "width": 130, + "height": 88, + "page": 101 + } + ], + "sectionNumber": 479, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283253962Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a8cd4454c0d2d64c5e45af555f97b3f2", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "CGA179500.", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 204, + "y": 397 + }, + "width": 79, + "height": 64, + "page": 103 + } + ], + "sectionNumber": 479, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283254112Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f5cd2462b75bf10ae6eab389f39de5c0", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "CGA179500.", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 204, + "y": 110 + }, + "width": 120, + "height": 49, + "page": 104 + } + ], + "sectionNumber": 479, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283254262Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b8471a922965507e2305bd9ade84b076", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "CGA179500.", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 204, + "y": 547 + }, + "width": 102, + "height": 69, + "page": 104 + } + ], + "sectionNumber": 479, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283254402Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8d397040eea0d22ef27e0e0d6d81ed81", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "CGA179500.", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 204, + "y": 395 + }, + "width": 118, + "height": 66, + "page": 105 + } + ], + "sectionNumber": 479, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283254552Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "954d177f01d84a607d080f34bea7e688", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "CGA179500.", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 204, + "y": 725 + }, + "width": 106, + "height": 43, + "page": 106 + } + ], + "sectionNumber": 479, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283254702Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5d9ea0f17ddc0b2a2cc0df743d0aa227", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "CGA179500.", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 207, + "y": 336 + }, + "width": 109, + "height": 68, + "page": 106 + } + ], + "sectionNumber": 479, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283254852Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "075b64d779b4c1723b887092e79184aa", + "type": "headline", + "value": "2.2 for", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.2 for", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 433.54, + "y": 585.3168 + }, + "width": 26.943481, + "height": -10.526825, + "page": 113 + } + ], + "sectionNumber": 480, + "textBefore": null, + "textAfter": " grain and", + "comments": null, + "startOffset": 0, + "endOffset": 7, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283254992Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "fc84274f74d5132710778b98c2c90423", + "type": "headline", + "value": "2.2 for", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.2 for", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 300.65625, + "y": 358.7368 + }, + "width": 27.021515, + "height": -10.526825, + "page": 113 + } + ], + "sectionNumber": 480, + "textBefore": "conversion factor is ", + "textAfter": " cereal grain", + "comments": null, + "startOffset": 939, + "endOffset": 946, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283255132Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b1c47b24d5a284fb5ba280fc89f22c93", + "type": "headline", + "value": "2.7.4 Summary of residue trials in plants and identification of critical GAP", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.4 Summary of residue trials in plants and identification of critical GAP", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 770.18713 + }, + "width": 335.4577, + "height": -10.447144, + "page": 115 + } + ], + "sectionNumber": 491, + "textBefore": null, + "textAfter": " Representative use", + "comments": null, + "startOffset": 0, + "endOffset": 76, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283255272Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7d7a47d6a1141073033dd8ba388e992a", + "type": "headline", + "value": "2.7.5 Summary of feeding studies in poultry, ruminants, pigs and fish", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.5 Summary of feeding studies in poultry, ruminants, pigs and fish", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 453.83716 + }, + "width": 311.65924, + "height": -10.447144, + "page": 117 + } + ], + "sectionNumber": 556, + "textBefore": null, + "textAfter": " Dietary burden", + "comments": null, + "startOffset": 0, + "endOffset": 69, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283255422Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "963587a5784b46753078a1f3bbbc1e43", + "type": "headline", + "value": "2.7.6 Summary of effects of processing", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.6 Summary of effects of processing", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 607.43713 + }, + "width": 180.95636, + "height": -10.447144, + "page": 122 + } + ], + "sectionNumber": 557, + "textBefore": null, + "textAfter": " The effect", + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283255562Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e22c65a45f137417e13c67c600d5b5fd", + "type": "headline", + "value": "2.7.7 Summary of residues in rotational crops", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.7 Summary of residues in rotational crops", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 599.15717 + }, + "width": 211.79587, + "height": -10.447144, + "page": 124 + } + ], + "sectionNumber": 558, + "textBefore": null, + "textAfter": " The metabolism", + "comments": null, + "startOffset": 0, + "endOffset": 45, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283255702Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a92f9bc869013955eaf946a851cba49e", + "type": "headline", + "value": "2.7.8 Summary of other studies", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.8 Summary of other studies", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 711.74713 + }, + "width": 150.02396, + "height": -10.447144, + "page": 125 + } + ], + "sectionNumber": 559, + "textBefore": null, + "textAfter": " No studies", + "comments": null, + "startOffset": 0, + "endOffset": 30, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283255852Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4e970526ed5e042d9980095f64602135", + "type": "headline", + "value": "2.7.9 Estimation of the potential and actual exposure through diet and other sources", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.9 Estimation of the potential and actual exposure through diet and other sources", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 225.66718 + }, + "width": 374.77136, + "height": -10.447144, + "page": 125 + } + ], + "sectionNumber": 654, + "textBefore": null, + "textAfter": " The definition", + "comments": null, + "startOffset": 0, + "endOffset": 84, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283258471Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "52699efb17d259ef4706847e118cf6c0", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.9 Estimation of the potential and actual exposure through diet and other sources", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 417, + "y": 711 + }, + "width": 141, + "height": 17, + "page": 127 + } + ], + "sectionNumber": 654, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283258631Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "077767f2138c980e4ebbec1a6ca64e48", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.9 Estimation of the potential and actual exposure through diet and other sources", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 417, + "y": 736 + }, + "width": 141, + "height": 35, + "page": 127 + } + ], + "sectionNumber": 654, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283258851Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "fd4fc482393f8c030d7fca5f2b08b6e9", + "type": "headline", + "value": "2.7.10 Proposed MRLs and compliance with existing MRLs", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.10 Proposed MRLs and compliance with existing MRLs", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 378.69714 + }, + "width": 265.40073, + "height": -10.447144, + "page": 136 + } + ], + "sectionNumber": 668, + "textBefore": null, + "textAfter": " EU MRLs", + "comments": null, + "startOffset": 0, + "endOffset": 54, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283259001Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "145d39037b8cbba79c704242871ae7a5", + "type": "headline", + "value": "2.7.11 Proposed import tolerances and compliance with existing import tolerances", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.11 Proposed import tolerances and compliance with existing import tolerances", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 563.75714 + }, + "width": 361.4566, + "height": -10.447144, + "page": 137 + } + ], + "sectionNumber": 669, + "textBefore": null, + "textAfter": " No import", + "comments": null, + "startOffset": 0, + "endOffset": 80, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283259131Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "37850594fc13f524e53f98e7c8ebf4bc", + "type": "headline", + "value": "2.8 Fate and behaviour in the environment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8 Fate and behaviour in the environment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.7094 + }, + "width": 215.7858, + "height": -10.929359, + "page": 138 + } + ], + "sectionNumber": 670, + "textBefore": null, + "textAfter": " Majority experimental", + "comments": null, + "startOffset": 0, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283259281Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5ca1508bcd74a4c3444922ff7855d36c", + "type": "headline", + "value": "2.8.1 Summary of fate and behaviour in soil", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 623.7872 + }, + "width": 203.7948, + "height": -10.447144, + "page": 138 + } + ], + "sectionNumber": 671, + "textBefore": null, + "textAfter": " The degradation", + "comments": null, + "startOffset": 0, + "endOffset": 43, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283259431Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d1c162d31fbb25463983de8d2cf3ad39", + "type": "headline", + "value": "0.21 days.", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "0.21 days.", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 562.7568 + }, + "width": 40.647247, + "height": -10.526825, + "page": 140 + } + ], + "sectionNumber": 673, + "textBefore": null, + "textAfter": " Under anaerobic", + "comments": null, + "startOffset": 0, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283259581Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:53:42.027327Z", + "requestedDate": "2022-10-10T11:53:42.016138Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f30fa8528caf95f03bd215763d0a4c60", + "type": "headline", + "value": "0.72 days. For modelling purpose, first-order normalised DT50 values ranged from 0.045 to 0.72 days, with a", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "0.72 days. For modelling purpose, first-order normalised DT50 values ranged from 0.045 to 0.72 days, with a", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 753.2268 + }, + "width": 260.44598, + "height": -12.086815, + "page": 140 + }, + { + "topLeft": { + "x": 335.47, + "y": 753.2268 + }, + "width": 195.23611, + "height": -10.526817, + "page": 140 + } + ], + "sectionNumber": 672, + "textBefore": null, + "textAfter": " geometric mean", + "comments": null, + "startOffset": 0, + "endOffset": 107, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283259731Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:53:37.920729Z", + "requestedDate": "2022-10-10T11:53:37.899067Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ff5ae2632a649103560d152929f5c6ff", + "type": "headline", + "value": "2.8.2 Summary of fate and behaviour in water and sediment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.2 Summary of fate and behaviour in water and sediment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 204.66718 + }, + "width": 272.9592, + "height": -10.447144, + "page": 141 + } + ], + "sectionNumber": 674, + "textBefore": null, + "textAfter": " Hydrolysis New", + "comments": null, + "startOffset": 0, + "endOffset": 57, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283259951Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "cf235ff41fcef22669f83f0d22619295", + "type": "headline", + "value": "CGA300405", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "CGA300405", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 94.05397, + "y": 357.46213 + }, + "width": 44.556595, + "height": -10.697571, + "page": 143 + } + ], + "sectionNumber": 675, + "textBefore": null, + "textAfter": " Citric acid", + "comments": null, + "startOffset": 0, + "endOffset": 9, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283260091Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:53:53.227035Z", + "requestedDate": "2022-10-10T11:53:53.211846Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "cb4b1a700be93c6474eced1d110d99db", + "type": "headline", + "value": "2.8.3 Summary of fate and behaviour in air", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.3 Summary of fate and behaviour in air", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 770.18713 + }, + "width": 201.3877, + "height": -10.447144, + "page": 145 + } + ], + "sectionNumber": 676, + "textBefore": null, + "textAfter": " Trinexapac-ethyl has", + "comments": null, + "startOffset": 0, + "endOffset": 42, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283260301Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "27f79d15c9b90f5216b0d9a43dd0f7ed", + "type": "headline", + "value": "2.8.5 Definition of the residues in the environment requiring further assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.5 Definition of the residues in the environment requiring further assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 573.71716 + }, + "width": 355.8275, + "height": -10.447144, + "page": 145 + } + ], + "sectionNumber": 695, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 80, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283260581Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c65a0398a13aece118f679d64e457410", + "type": "headline", + "value": "2.8.6 Summary of exposure calculations and product assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.6 Summary of exposure calculations and product assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.7094 + }, + "width": 308.3893, + "height": -10.929359, + "page": 146 + } + ], + "sectionNumber": 696, + "textBefore": null, + "textAfter": " PECsoil Acceptable", + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283260731Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7d976780efd1661d191514cadffc7003", + "type": "headline", + "value": "1.2 day", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "1.2 day", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 275.05292, + "y": 572.2368 + }, + "width": 30.477661, + "height": -10.526825, + "page": 146 + } + ], + "sectionNumber": 697, + "textBefore": null, + "textAfter": " was selected", + "comments": null, + "startOffset": 0, + "endOffset": 7, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283260871Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T11:54:18.318037Z", + "requestedDate": "2022-10-10T11:54:18.297731Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e0e0c3bcf6d1d0055fc935a6d464df6f", + "type": "headline", + "value": "2.9 Effects on non-target species", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9 Effects on non-target species", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.7094 + }, + "width": 166.28503, + "height": -10.929359, + "page": 148 + } + ], + "sectionNumber": 698, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 33, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283261011Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "55c549edfa85c8f00ba288b58634169a", + "type": "headline", + "value": "2.9.1 Summary of effects on birds and other terrestrial vertebrates", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.1 Summary of effects on birds and other terrestrial vertebrates", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 726.7494 + }, + "width": 319.05402, + "height": -10.929367, + "page": 148 + } + ], + "sectionNumber": 699, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 67, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283261151Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7be7a4cc5006754201282ffa7aa4bf92", + "type": "headline", + "value": "2.9.1.2 Potential for endocrine disruption properties in birds and mammals", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.1.2 Potential for endocrine disruption properties in birds and mammals", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 249.78717 + }, + "width": 325.59305, + "height": -10.447144, + "page": 148 + } + ], + "sectionNumber": 712, + "textBefore": null, + "textAfter": " A review", + "comments": null, + "startOffset": 0, + "endOffset": 74, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283261671Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a39b84ba1bdc3791794e8a8db70be172", + "type": "headline", + "value": "2.9.1.1. Birds", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.1.1. Birds", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 695.78937 + }, + "width": 61.525925, + "height": -10.929367, + "page": 148 + } + ], + "sectionNumber": 711, + "textBefore": null, + "textAfter": " Avian acute", + "comments": null, + "startOffset": 0, + "endOffset": 14, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283261811Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "903033c5c2328e43ee6252e24a273731", + "type": "headline", + "value": "2.9.2 Summary of effects on aquatic organisms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.2 Summary of effects on aquatic organisms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 418.6594 + }, + "width": 230.04605, + "height": -10.929352, + "page": 149 + } + ], + "sectionNumber": 737, + "textBefore": null, + "textAfter": " The toxicity", + "comments": null, + "startOffset": 0, + "endOffset": 45, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283261961Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bc6dba7a3368ffe0f269e153b12a5c0d", + "type": "headline", + "value": "2.9.2.2 Assessment of toxicity (T)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.2.2 Assessment of toxicity (T)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 657.7494 + }, + "width": 156.68529, + "height": -10.929367, + "page": 151 + } + ], + "sectionNumber": 739, + "textBefore": null, + "textAfter": " An active", + "comments": null, + "startOffset": 0, + "endOffset": 34, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283262111Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4b55a0c82c183bb21dcafc5640e49a44", + "type": "headline", + "value": "2.9.2.3 Potential for endocrine disruption properties in aquatic organisms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.2.3 Potential for endocrine disruption properties in aquatic organisms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 548.7594 + }, + "width": 347.40738, + "height": -10.929352, + "page": 151 + } + ], + "sectionNumber": 740, + "textBefore": null, + "textAfter": " Population relevant", + "comments": null, + "startOffset": 0, + "endOffset": 74, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283262241Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b98b46e99d49bffd3d24cf1ececbccbe", + "type": "headline", + "value": "2.9.3 Summary of effects on arthropods", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.3 Summary of effects on arthropods", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 327.33936 + }, + "width": 196.71634, + "height": -10.929382, + "page": 151 + } + ], + "sectionNumber": 741, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283262471Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "dc519519416a59f30ea5b47fdc2678a2", + "type": "headline", + "value": "2.9.2.1 Assessment of bioaccumulation (B)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.2.1 Assessment of bioaccumulation (B)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.7094 + }, + "width": 199.99527, + "height": -10.929359, + "page": 151 + } + ], + "sectionNumber": 738, + "textBefore": null, + "textAfter": " Since trinexapac-ethyl", + "comments": null, + "startOffset": 0, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283262611Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3d02554f2d588a4f5f0cf12542788474", + "type": "headline", + "value": "2.9.3.1 Summary of effects on bees", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.3.1 Summary of effects on bees", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 296.2594 + }, + "width": 168.26288, + "height": -10.929382, + "page": 151 + } + ], + "sectionNumber": 749, + "textBefore": null, + "textAfter": " The toxicity", + "comments": null, + "startOffset": 0, + "endOffset": 34, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283262751Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a9ea9dcf7594430e65c5f930f830f188", + "type": "headline", + "value": "2.9.3.2 Summary of effects on arthropods other than bees", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.3.2 Summary of effects on arthropods other than bees", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 469.3194 + }, + "width": 271.55655, + "height": -10.929352, + "page": 152 + } + ], + "sectionNumber": 761, + "textBefore": null, + "textAfter": " The toxicity", + "comments": null, + "startOffset": 0, + "endOffset": 56, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283262971Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e6367da030041101cfc5c895f722b451", + "type": "headline", + "value": "2.9.4.1 Summary of effects on earthworms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.4.1 Summary of effects on earthworms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 593.39935 + }, + "width": 204.95984, + "height": -10.929352, + "page": 153 + } + ], + "sectionNumber": 776, + "textBefore": null, + "textAfter": " Data on", + "comments": null, + "startOffset": 0, + "endOffset": 40, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283263181Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d2369ec197ecbb94fd3b9007b91eff66", + "type": "headline", + "value": "2.9.4 Summary of effects on non-target soil meso- and macrofauna", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.4 Summary of effects on non-target soil meso- and macrofauna", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 636.3894 + }, + "width": 318.742, + "height": -10.929367, + "page": 153 + } + ], + "sectionNumber": 762, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 64, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283263321Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c726b247c7817e863b0763e981f23812", + "type": "headline", + "value": "2.9.4.2 Summary of effects on other soil macro-organisms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.4.2 Summary of effects on other soil macro-organisms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 591.9594 + }, + "width": 276.59702, + "height": -10.929352, + "page": 154 + } + ], + "sectionNumber": 787, + "textBefore": null, + "textAfter": " New studies", + "comments": null, + "startOffset": 0, + "endOffset": 56, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283263461Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0503e5a0d3f95f9662f99cdf3978ab76", + "type": "headline", + "value": "2.9.6 Summary of effects on terrestrial non-target higher plants", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.6 Summary of effects on terrestrial non-target higher plants", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 183.90936 + }, + "width": 304.88828, + "height": -10.929382, + "page": 155 + } + ], + "sectionNumber": 809, + "textBefore": null, + "textAfter": " In the", + "comments": null, + "startOffset": 0, + "endOffset": 64, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283263601Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "25e0dba3010785ad3f8a435fa1e69b47", + "type": "headline", + "value": "2.9.5 Summary of effects on soil nitrogen transformation", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.5 Summary of effects on soil nitrogen transformation", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 735.3894 + }, + "width": 276.7563, + "height": -10.929359, + "page": 155 + } + ], + "sectionNumber": 798, + "textBefore": null, + "textAfter": " In the", + "comments": null, + "startOffset": 0, + "endOffset": 56, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283263751Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9489bb25edd80ee82115f7680ff06cfb", + "type": "headline", + "value": "2.9.8 Summary of effects on biological methods for sewage treatment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.8 Summary of effects on biological methods for sewage treatment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 300.33936 + }, + "width": 329.66418, + "height": -10.929382, + "page": 156 + } + ], + "sectionNumber": 815, + "textBefore": null, + "textAfter": " In the", + "comments": null, + "startOffset": 0, + "endOffset": 67, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283263901Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e7beb9703a61010280b080bfa056b356", + "type": "headline", + "value": "2.9.7 Summary of effects on other terrestrial organisms (flora and fauna)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.7 Summary of effects on other terrestrial organisms (flora and fauna)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 407.01938 + }, + "width": 349.3698, + "height": -10.929352, + "page": 156 + } + ], + "sectionNumber": 810, + "textBefore": null, + "textAfter": " No data", + "comments": null, + "startOffset": 0, + "endOffset": 73, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283264051Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b7817cf0477d78421d8bb6a97af8840f", + "type": "headline", + "value": "2.9.9 Summary of product exposure and risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9 Summary of product exposure and risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 697.7094 + }, + "width": 270.95273, + "height": -10.929367, + "page": 157 + } + ], + "sectionNumber": 824, + "textBefore": null, + "textAfter": " The formulation", + "comments": null, + "startOffset": 0, + "endOffset": 53, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283264201Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a9927f574c2d6dc04a36883c8185764c", + "type": "headline", + "value": "2.9.9.2 Summary of product exposure and risk assessment for aquatic organisms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9.2 Summary of product exposure and risk assessment for aquatic organisms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 386.85938 + }, + "width": 380.4969, + "height": -10.929352, + "page": 162 + } + ], + "sectionNumber": 947, + "textBefore": null, + "textAfter": " The risk", + "comments": null, + "startOffset": 0, + "endOffset": 77, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283264501Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0f0c2d4bb45c51efaf86d1cb88568226", + "type": "headline", + "value": "2.9.9.3 Summary of product exposure and risk assessment for arthropods", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9.3 Summary of product exposure and risk assessment for arthropods", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 667.7094 + }, + "width": 347.0371, + "height": -10.929367, + "page": 167 + } + ], + "sectionNumber": 948, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 70, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283264641Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "078b4b6916bdb3b8e71b2e079ac3b20a", + "type": "headline", + "value": "2.9.9.3.1 Summary of product exposure and risk assessment for bees", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9.3.1 Summary of product exposure and risk assessment for bees", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 624.7494 + }, + "width": 321.36572, + "height": -10.929367, + "page": 167 + } + ], + "sectionNumber": 975, + "textBefore": null, + "textAfter": " Acute risk", + "comments": null, + "startOffset": 0, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283265101Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bee5aa26d3f74b22ff507959093984aa", + "type": "headline", + "value": "2.9.9.3.2 Summary of product exposure and risk assessment for arthropods other than bees", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9.3.2 Summary of product exposure and risk assessment for arthropods other than bees", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 711.2694 + }, + "width": 428.67288, + "height": -10.929367, + "page": 171 + } + ], + "sectionNumber": 1004, + "textBefore": null, + "textAfter": " The risk", + "comments": null, + "startOffset": 0, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283265241Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "aa2f84e5bc20b7ac5462372497053499", + "type": "headline", + "value": "2.9.9.5 Summary of product exposure and risk assessment for soil nitrogen transformation", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9.5 Summary of product exposure and risk assessment for soil nitrogen transformation", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 455.2794 + }, + "width": 425.89914, + "height": -10.929352, + "page": 174 + } + ], + "sectionNumber": 1030, + "textBefore": null, + "textAfter": " The risk", + "comments": null, + "startOffset": 0, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283265601Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b9e1ac39dc04c3682dabdeac3ebba499", + "type": "headline", + "value": "2.9.9.6 Summary of product exposure and risk assessment for terrestrial non-target higher plants", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9.6 Summary of product exposure and risk assessment for terrestrial non-target higher plants", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 295.41937 + }, + "width": 458.03836, + "height": -10.929382, + "page": 175 + } + ], + "sectionNumber": 1031, + "textBefore": null, + "textAfter": " The risk", + "comments": null, + "startOffset": 0, + "endOffset": 96, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283265751Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c39e9603615e75177cfe8cb447e854cd", + "type": "headline", + "value": "2.10 Classification and labelling", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.10 Classification and labelling", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 552.83936 + }, + "width": 159.16164, + "height": -10.929352, + "page": 176 + } + ], + "sectionNumber": 1087, + "textBefore": null, + "textAfter": " Table 2.10-1:", + "comments": null, + "startOffset": 0, + "endOffset": 33, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283266031Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6a98158b459ad05b7e74e0909919e2e0", + "type": "headline", + "value": "2.11.3.2 STEP 3, Stage 2: screening for genotoxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.3.2 STEP 3, Stage 2: screening for genotoxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 411.7768 + }, + "width": 211.72574, + "height": -10.526825, + "page": 180 + } + ], + "sectionNumber": 1090, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283266321Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "48bcbba8ac0ba463a9e8174ede3cc9a2", + "type": "headline", + "value": "2.11 Relevance of metabolites in groundwater", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11 Relevance of metabolites in groundwater", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 684.9894 + }, + "width": 224.0166, + "height": -10.929367, + "page": 180 + } + ], + "sectionNumber": 1088, + "textBefore": null, + "textAfter": " 2.11.1. STEP", + "comments": null, + "startOffset": 0, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283266461Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "954d8558441d59aa80e40e9174d189b2", + "type": "headline", + "value": "2.11.3.3 STEP 3, Stage 3: screening for toxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.3.3 STEP 3, Stage 3: screening for toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 385.4968 + }, + "width": 192.24847, + "height": -10.526825, + "page": 180 + } + ], + "sectionNumber": 1091, + "textBefore": null, + "textAfter": " 2.11.4. STEP", + "comments": null, + "startOffset": 0, + "endOffset": 48, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283266601Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "43c9291ca6dc57a00b22c4a1f99883f6", + "type": "headline", + "value": "2.12 Consideration of isomeric composition in the risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12 Consideration of isomeric composition in the risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 219.66937 + }, + "width": 316.96738, + "height": -10.929382, + "page": 180 + } + ], + "sectionNumber": 1092, + "textBefore": null, + "textAfter": " Not relevant.", + "comments": null, + "startOffset": 0, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283266741Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0ac81d4f6cf26a796feaa3188753bfc9", + "type": "headline", + "value": "2.11.3.1 STEP 3, Stage 1: screening for biological activity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.3.1 STEP 3, Stage 1: screening for biological activity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 438.0568 + }, + "width": 234.28693, + "height": -10.526825, + "page": 180 + } + ], + "sectionNumber": 1089, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 59, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283266881Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "71dac49d92b472df21ade3403c7e2df6", + "type": "headline", + "value": "2.12.4 Operator, Worker, Bystander and Resident exposure", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.4 Operator, Worker, Bystander and Resident exposure", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 646.46716 + }, + "width": 266.6357, + "height": -10.447144, + "page": 181 + } + ], + "sectionNumber": 1096, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 56, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283267101Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9ef15de83c70ce84f66dc14296fe20c1", + "type": "headline", + "value": "2.12.2 Methods of analysis", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.2 Methods of analysis", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 728.90717 + }, + "width": 124.50366, + "height": -10.447144, + "page": 181 + } + ], + "sectionNumber": 1094, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 26, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283267231Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d096ee670fb324ba64feb5aa933a7223", + "type": "headline", + "value": "2.13 Residue definition", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.13 Residue definition", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 480.95938 + }, + "width": 117.44147, + "height": -10.929352, + "page": 181 + } + ], + "sectionNumber": 1100, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 23, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283267381Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ca8aa2fbd0c43f119ade268ab7cac58d", + "type": "headline", + "value": "2.13.1 Definition of residues for exposure/risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.13.1 Definition of residues for exposure/risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 438.45715 + }, + "width": 255.70883, + "height": -10.447144, + "page": 181 + } + ], + "sectionNumber": 1101, + "textBefore": null, + "textAfter": " Food of", + "comments": null, + "startOffset": 0, + "endOffset": 58, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283267521Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "806d34ca303fd01d602b700e61056dd7", + "type": "headline", + "value": "2.12.3 Mammalian toxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.3 Mammalian toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 687.74713 + }, + "width": 126.10004, + "height": -10.447144, + "page": 181 + } + ], + "sectionNumber": 1095, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 25, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283267671Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e1c4792da6837ef16911833f134147c0", + "type": "headline", + "value": "2.12.6 Environmental fate", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.6 Environmental fate", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 563.87714 + }, + "width": 123.01245, + "height": -10.447144, + "page": 181 + } + ], + "sectionNumber": 1098, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 25, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283267821Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "136ed95c32e9e97ba44ce65eea6b9765", + "type": "headline", + "value": "2.12.5 Residues and Consumer risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.5 Residues and Consumer risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 605.15717 + }, + "width": 211.39755, + "height": -10.447144, + "page": 181 + } + ], + "sectionNumber": 1097, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283267961Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "fff513d74be9ed51a21ab439ca3a09a1", + "type": "headline", + "value": "2.12.7 Ecotoxciology", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.7 Ecotoxciology", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 522.71716 + }, + "width": 99.35741, + "height": -10.447144, + "page": 181 + } + ], + "sectionNumber": 1099, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 20, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283268171Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "842f1188b01f93a89c75a5d2bc75313d", + "type": "headline", + "value": "2.12.1 Identity and physical chemical properties", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.1 Identity and physical chemical properties", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 770.18713 + }, + "width": 216.48709, + "height": -10.447144, + "page": 181 + } + ], + "sectionNumber": 1093, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 48, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283268311Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3ebc21c88827078833625ef99b335718", + "type": "headline", + "value": "2.14 Effect of water treatment processes on the nature of residues present in surface water", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.14 Effect of water treatment processes on the nature of residues present in surface water", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 330.21936 + }, + "width": 432.2804, + "height": -10.929382, + "page": 182 + } + ], + "sectionNumber": 1103, + "textBefore": null, + "textAfter": " Level 3", + "comments": null, + "startOffset": 0, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283268451Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b40a3c1c8a6611462cc733b613c4e918", + "type": "headline", + "value": "2.13.2 Definition of residues for monitoring", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.13.2 Definition of residues for monitoring", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 677.18713 + }, + "width": 196.38779, + "height": -10.447144, + "page": 182 + } + ], + "sectionNumber": 1102, + "textBefore": null, + "textAfter": " Food of", + "comments": null, + "startOffset": 0, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283268591Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "da387294f60cb387e54040c5dc40e35a", + "type": "headline", + "value": "3.1 Background to the proposed decision", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1 Background to the proposed decision", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 416.87714 + }, + "width": 190.22484, + "height": -10.447144, + "page": 183 + } + ], + "sectionNumber": 1170, + "textBefore": null, + "textAfter": " 3.1.1 Proposal", + "comments": null, + "startOffset": 0, + "endOffset": 39, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283268721Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7a886a0fd034991c11c9b561517bdc7a", + "type": "headline", + "value": "3.1.2 Proposal – Candidate for substitution", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.2 Proposal – Candidate for substitution", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 523.58716 + }, + "width": 192.52785, + "height": -10.447144, + "page": 190 + } + ], + "sectionNumber": 1174, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 43, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283268941Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "efb86003314a44bfef623ac3d42d40b2", + "type": "headline", + "value": "3.1.3 Proposal – Low risk active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.3 Proposal – Low risk active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 523.58716 + }, + "width": 189.39046, + "height": -10.447144, + "page": 191 + } + ], + "sectionNumber": 1178, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 42, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283269101Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6a70847a6291059e561c459276ebe624", + "type": "headline", + "value": "3.1.4 List of studies to be generated, still ongoing or available but not evaluated", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.4 List of studies to be generated, still ongoing or available but not evaluated", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 523.58716 + }, + "width": 345.96942, + "height": -10.447144, + "page": 192 + } + ], + "sectionNumber": 1229, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 83, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283269241Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0c70b3980e624366f18c8a49f004bf00", + "type": "headline", + "value": "3.1.6 Critical areas of concern", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.6 Critical areas of concern", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 234.30713 + }, + "width": 137.1937, + "height": -10.447144, + "page": 196 + } + ], + "sectionNumber": 1249, + "textBefore": null, + "textAfter": " 1) An", + "comments": null, + "startOffset": 0, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283269481Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5200c2e0708bce8296ecf2969d620702", + "type": "headline", + "value": "3.1.5 Issues that could not be finalised", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.5 Issues that could not be finalised", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 755.18713 + }, + "width": 170.43198, + "height": -10.447144, + "page": 196 + } + ], + "sectionNumber": 1240, + "textBefore": null, + "textAfter": " 1) An", + "comments": null, + "startOffset": 0, + "endOffset": 40, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283269641Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "75d788450d09512093733984dde231de", + "type": "headline", + "value": "3.1.7 Overview table of the concerns identified for each representative use considered", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.7 Overview table of the concerns identified for each representative use considered", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 386.73715 + }, + "width": 372.2236, + "height": -10.447144, + "page": 197 + } + ], + "sectionNumber": 1274, + "textBefore": null, + "textAfter": " (If a", + "comments": null, + "startOffset": 0, + "endOffset": 86, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283269881Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bcaaebe8802bdd9a02018e6e19ee605a", + "type": "headline", + "value": "3.1.8 Area(s) where expert consultation is considered necessary", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.8 Area(s) where expert consultation is considered necessary", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 549.2371 + }, + "width": 277.9086, + "height": -10.447144, + "page": 198 + } + ], + "sectionNumber": 1280, + "textBefore": null, + "textAfter": " It is", + "comments": null, + "startOffset": 0, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283270031Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "943f49091dec2a28ada263a29e01e2d2", + "type": "headline", + "value": "3.1.9 Critical issues on which the Co-RMS did not agree with the assessment by the RMS", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.9 Critical issues on which the Co-RMS did not agree with the assessment by the RMS", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 241.86713 + }, + "width": 387.43008, + "height": -10.447144, + "page": 198 + } + ], + "sectionNumber": 1287, + "textBefore": null, + "textAfter": " Points on", + "comments": null, + "startOffset": 0, + "endOffset": 86, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283270271Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ca9466806615981d4c1c87b6ab5ce5b3", + "type": "headline", + "value": "3.2 Proposed decision", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.2 Proposed decision", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 770.18713 + }, + "width": 108.80769, + "height": -10.447144, + "page": 199 + } + ], + "sectionNumber": 1288, + "textBefore": null, + "textAfter": " It is", + "comments": null, + "startOffset": 0, + "endOffset": 21, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283270411Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "423496c3bd0f51d45003d94c4928e26d", + "type": "headline", + "value": "3.3.1 Particular conditions proposed to be taken into account to manage the risks identified", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.3.1 Particular conditions proposed to be taken into account to manage the risks identified", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 318.45715 + }, + "width": 397.64487, + "height": -10.447144, + "page": 199 + } + ], + "sectionNumber": 1296, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 92, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283270701Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "2296c8ac59190e804bd82d7fdba4e891", + "type": "headline", + "value": "APPENDICES", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDICES", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.7094 + }, + "width": 70.31377, + "height": -10.929359, + "page": 200 + } + ], + "sectionNumber": 1297, + "textBefore": null, + "textAfter": " Appendix 1", + "comments": null, + "startOffset": 0, + "endOffset": 10, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283270841Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a6f745eb3bca178245145848013d7e2c", + "type": "headline", + "value": "1 Statement of subject matter and purpose for which this report has been prepared and background information on the application", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1 Statement of subject matter and purpose for which this report has been prepared and", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 706.87537 + }, + "width": 5.52, + "height": 9.85872, + "page": 8 + }, + { + "topLeft": { + "x": 96.984, + "y": 706.87537 + }, + "width": 427.23697, + "height": 9.85872, + "page": 8 + }, + { + "topLeft": { + "x": 97.104, + "y": 687.91534 + }, + "width": 203.01456, + "height": 9.85872, + "page": 8 + } + ], + "sectionNumber": 8, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 127, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283236042Z" + }, + { + "analysisNumber": 3, + "type": "CHANGED", + "dateTime": "2022-10-10T11:44:45.955046089Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:44:44.37Z", + "requestedDate": "2022-10-10T11:44:44.370012Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "1 Statement of subject matter and purpose for which this report has been prepared and background information on the application" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b22e85eab47259518edbf245c83c9bcf", + "type": "headline", + "value": "1.4.3 Trade name or proposed trade name and producer's development code number of the plant protection product", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.3 Trade name or proposed trade name and producer's development code number of the", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 276.47537 + }, + "width": 453.30032, + "height": 9.85872, + "page": 13 + }, + { + "topLeft": { + "x": 102.98, + "y": 257.51535 + }, + "width": 115.5888, + "height": 9.85872, + "page": 13 + } + ], + "sectionNumber": 44, + "textBefore": null, + "textAfter": " Producer’s development", + "comments": null, + "startOffset": 0, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283239112Z" + }, + { + "analysisNumber": 4, + "type": "CHANGED", + "dateTime": "2022-10-10T11:45:32.635877455Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:45:31.655Z", + "requestedDate": "2022-10-10T11:45:31.655832Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "1.4.3 Trade name or proposed trade name and producer's development code number of the plant protection product" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "091e3ae3da3e6e028f8faaf3b2a1781d", + "type": "headline", + "value": "1.4.4 Detailed quantitative and qualitative information on the composition of the plant protection product", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.4 Detailed quantitative and qualitative information on the composition of the plant", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 758.47534 + }, + "width": 453.44345, + "height": 9.85872, + "page": 14 + }, + { + "topLeft": { + "x": 102.98, + "y": 739.5154 + }, + "width": 88.36416, + "height": 9.85872, + "page": 14 + } + ], + "sectionNumber": 45, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 106, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283239882Z" + }, + { + "analysisNumber": 5, + "type": "CHANGED", + "dateTime": "2022-10-10T11:45:55.739619022Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:45:54.71Z", + "requestedDate": "2022-10-10T11:45:54.710595Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "1.4.4 Detailed quantitative and qualitative information on the composition of the plant protection product" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b420306d4d52021d2a67acb7a99e3738", + "type": "headline", + "value": "1.5.3 Details of other uses applied for to support the setting of MRLs for uses beyond the representative uses", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.5.3 Details of other uses applied for to support the setting of MRLs for uses beyond the", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 670.15533 + }, + "width": 451.1144, + "height": 9.85872, + "page": 17 + }, + { + "topLeft": { + "x": 104.06, + "y": 651.1954 + }, + "width": 89.55648, + "height": 9.85872, + "page": 17 + } + ], + "sectionNumber": 69, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283241342Z" + }, + { + "analysisNumber": 6, + "type": "CHANGED", + "dateTime": "2022-10-10T11:46:14.231296042Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:46:13.24Z", + "requestedDate": "2022-10-10T11:46:13.240474Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "1.5.3 Details of other uses applied for to support the setting of MRLs for uses beyond the representative uses" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e22537b634eaca81cc25fbf8dbf67c36", + "type": "headline", + "value": "2.6.8.1 28-Day immunotoxicity feeding study in mice and a review concerning immunotoxicity potential", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.8.1 28-Day immunotoxicity feeding study in mice and a review concerning immunotoxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 72.024, + "y": 483.40536 + }, + "width": 451.43872, + "height": 9.85872, + "page": 56 + }, + { + "topLeft": { + "x": 111.98, + "y": 464.44537 + }, + "width": 41.5656, + "height": 9.85872, + "page": 56 + } + ], + "sectionNumber": 241, + "textBefore": null, + "textAfter": " An immunotoxicity", + "comments": null, + "startOffset": 0, + "endOffset": 100, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283249562Z" + }, + { + "analysisNumber": 8, + "type": "CHANGED", + "dateTime": "2022-10-10T11:50:21.750748669Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:50:20.652Z", + "requestedDate": "2022-10-10T11:50:20.652812Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "2.6.8.1 28-Day immunotoxicity feeding study in mice and a review concerning immunotoxicity potential" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "66a596fccc7955d32a3c3a772db9c651", + "type": "headline", + "value": "2.6.13 Toxicological end point for assessment of occupational, bystander and residents risks – AOEL", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.13 Toxicological end point for assessment of occupational, bystander and residents risks –", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 570.28534 + }, + "width": 460.38226, + "height": 9.85872, + "page": 79 + }, + { + "topLeft": { + "x": 102.98, + "y": 551.2054 + }, + "width": 31.23216, + "height": 9.85872, + "page": 79 + } + ], + "sectionNumber": 332, + "textBefore": null, + "textAfter": " For Annex", + "comments": null, + "startOffset": 0, + "endOffset": 99, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283251482Z" + }, + { + "analysisNumber": 9, + "type": "CHANGED", + "dateTime": "2022-10-10T11:51:42.085772767Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:51:40.981Z", + "requestedDate": "2022-10-10T11:51:40.981956Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "2.6.13 Toxicological end point for assessment of occupational, bystander and residents risks – AOEL" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ea06a4aa1289f2851f52e5c90cb70e01", + "type": "headline", + "value": "2.7.2 Summary of metabolism, distribution and expression of residues in plants, poultry, lactating ruminants, pigs and fish", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants, poultry, lactating", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 367.57864 + }, + "width": 20.05944, + "height": 8.89428, + "page": 84 + }, + { + "topLeft": { + "x": 110.9, + "y": 367.57864 + }, + "width": 419.72437, + "height": 8.89428, + "page": 84 + }, + { + "topLeft": { + "x": 110.9, + "y": 350.41864 + }, + "width": 103.11588, + "height": 8.89428, + "page": 84 + } + ], + "sectionNumber": 364, + "textBefore": null, + "textAfter": " Metabolism in", + "comments": null, + "startOffset": 0, + "endOffset": 123, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283252302Z" + }, + { + "analysisNumber": 10, + "type": "CHANGED", + "dateTime": "2022-10-10T11:52:06.434979313Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:52:05.401Z", + "requestedDate": "2022-10-10T11:52:05.401639Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "2.7.2 Summary of metabolism, distribution and expression of residues in plants, poultry, lactating ruminants, pigs and fish" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8bf26f9e815d9acbe8f648e2b309f033", + "type": "headline", + "value": "2.8.4 Summary of monitoring data concerning fate and behaviour of the active substance, metabolites, degradation and reaction products", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.4 Summary of monitoring data concerning fate and behaviour of the active substance, metabolites,", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 626.94867 + }, + "width": 20.05944, + "height": 8.89428, + "page": 145 + }, + { + "topLeft": { + "x": 110.9, + "y": 626.94867 + }, + "width": 419.98364, + "height": 8.89428, + "page": 145 + }, + { + "topLeft": { + "x": 110.9, + "y": 609.66864 + }, + "width": 147.84624, + "height": 8.89428, + "page": 145 + } + ], + "sectionNumber": 677, + "textBefore": null, + "textAfter": " No monitoring", + "comments": null, + "startOffset": 0, + "endOffset": 134, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283260441Z" + }, + { + "analysisNumber": 11, + "type": "CHANGED", + "dateTime": "2022-10-10T11:54:09.753884333Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:54:08.69Z", + "requestedDate": "2022-10-10T11:54:08.690012Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "2.8.4 Summary of monitoring data concerning fate and behaviour of the active substance, metabolites, degradation and reaction products" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "da4bff661ea26dc30ec4e5a63bb9defe", + "type": "headline", + "value": "2.9.9.1 Summary of product exposure and risk assessment for birds and other terrestrial vertebrates", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9.1 Summary of product exposure and risk assessment for birds and other terrestrial", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 350.90536 + }, + "width": 459.8547, + "height": 9.85872, + "page": 157 + }, + { + "topLeft": { + "x": 102.98, + "y": 331.94537 + }, + "width": 53.2128, + "height": 9.85872, + "page": 157 + } + ], + "sectionNumber": 865, + "textBefore": null, + "textAfter": " Birds Risk", + "comments": null, + "startOffset": 0, + "endOffset": 99, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283264351Z" + }, + { + "analysisNumber": 12, + "type": "CHANGED", + "dateTime": "2022-10-10T11:55:18.042546739Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:55:16.902Z", + "requestedDate": "2022-10-10T11:55:16.902037Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "2.9.9.1 Summary of product exposure and risk assessment for birds and other terrestrial vertebrates" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "30f45cdc3591253f2ca9fcc482002493", + "type": "headline", + "value": "2.9.9.4 Summary of product exposure and risk assessment for non-target soil meso- and macrofauna", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9.4 Summary of product exposure and risk assessment for non-target soil meso- and", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 682.7554 + }, + "width": 460.30896, + "height": 9.85872, + "page": 173 + }, + { + "topLeft": { + "x": 102.98, + "y": 663.79535 + }, + "width": 56.97744, + "height": 9.85872, + "page": 173 + } + ], + "sectionNumber": 1020, + "textBefore": null, + "textAfter": " Earthworms The", + "comments": null, + "startOffset": 0, + "endOffset": 96, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283265391Z" + }, + { + "analysisNumber": 13, + "type": "CHANGED", + "dateTime": "2022-10-10T11:55:50.961671035Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:55:50.009Z", + "requestedDate": "2022-10-10T11:55:50.009172Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "2.9.9.4 Summary of product exposure and risk assessment for non-target soil meso- and macrofauna" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "55920aa120430516ffc4fca499d2523d", + "type": "headline", + "value": "2.9.9.7 Summary of product exposure and risk assessment for other terrestrial organisms (flora and fauna)", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9.7 Summary of product exposure and risk assessment for other terrestrial organisms (flora", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 758.47534 + }, + "width": 459.86526, + "height": 9.85872, + "page": 176 + }, + { + "topLeft": { + "x": 102.98, + "y": 739.5154 + }, + "width": 51.07104, + "height": 9.85872, + "page": 176 + } + ], + "sectionNumber": 1032, + "textBefore": null, + "textAfter": " No data", + "comments": null, + "startOffset": 0, + "endOffset": 105, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283266181Z" + }, + { + "analysisNumber": 14, + "type": "CHANGED", + "dateTime": "2022-10-10T11:56:23.821744708Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:56:22.664Z", + "requestedDate": "2022-10-10T11:56:22.664265Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "2.9.9.7 Summary of product exposure and risk assessment for other terrestrial organisms (flora and fauna)" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "54c4b871f93316993721dfe963d7b0e3", + "type": "headline", + "value": "2.9.9.8 Summary of product exposure and risk assessment for biological methods for sewage treatment", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9.8 Summary of product exposure and risk assessment for biological methods for sewage", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 667.2753 + }, + "width": 459.932, + "height": 9.85872, + "page": 176 + }, + { + "topLeft": { + "x": 102.98, + "y": 648.31537 + }, + "width": 46.4784, + "height": 9.85872, + "page": 176 + } + ], + "sectionNumber": 1033, + "textBefore": null, + "textAfter": " The risk", + "comments": null, + "startOffset": 0, + "endOffset": 99, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283265881Z" + }, + { + "analysisNumber": 15, + "type": "CHANGED", + "dateTime": "2022-10-10T11:56:43.650278321Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T11:56:42.58Z", + "requestedDate": "2022-10-10T11:56:42.580349Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "2.9.9.8 Summary of product exposure and risk assessment for biological methods for sewage treatment" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "25ccf150d659f969e7cc9858626b03ee", + "type": "headline", + "value": "2.6.12 Toxicological end point for assessment of risk following acute dietary exposure - ARfD (acute reference dose)", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.12 Toxicological end point for assessment of risk following acute dietary exposure - ARfD", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 455.80536 + }, + "width": 460.33728, + "height": 9.85872, + "page": 78 + }, + { + "topLeft": { + "x": 102.98, + "y": 436.82535 + }, + "width": 102.62784, + "height": 9.85872, + "page": 78 + } + ], + "sectionNumber": 318, + "textBefore": null, + "textAfter": " For Annex", + "comments": null, + "startOffset": 0, + "endOffset": 116, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283251332Z" + }, + { + "analysisNumber": 16, + "type": "CHANGED", + "dateTime": "2022-10-10T12:00:49.806894383Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T12:00:48.753Z", + "requestedDate": "2022-10-10T12:00:48.753418Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "2.6.12 Toxicological end point for assessment of risk following acute dietary exposure - ARfD (acute reference dose)" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "79e7a6972364b84ae7431da9db159043", + "type": "headline", + "value": "3.3 Rational for the conditions and restrictions to be associated with any approval or authorisation(s), as appropriate", + "reason": "Headline found, resized by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.3 Rational for the conditions and restrictions to be associated with any approval or authorisation(s),", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 366.37863 + }, + "width": 12.51972, + "height": 8.89428, + "page": 199 + }, + { + "topLeft": { + "x": 102.98, + "y": 366.37863 + }, + "width": 427.533, + "height": 8.89428, + "page": 199 + }, + { + "topLeft": { + "x": 102.98, + "y": 349.21863 + }, + "width": 62.43924, + "height": 8.89428, + "page": 199 + } + ], + "sectionNumber": 1289, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 119, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:44.283270551Z" + }, + { + "analysisNumber": 17, + "type": "CHANGED", + "dateTime": "2022-10-10T12:02:55.169392095Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "RESIZE", + "processedDate": "2022-10-10T12:02:54.047Z", + "requestedDate": "2022-10-10T12:02:54.04704Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": { + "value": "3.3 Rational for the conditions and restrictions to be associated with any approval or authorisation(s), as appropriate" + }, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "11cd9fccc57f877dc59afceb2cce7d9e", + "type": "manual", + "value": "Appendix 2 Reference list", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDICES", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 142.94, + "y": 291.50537 + }, + "width": 63.85536, + "height": 9.85872, + "page": 201 + }, + { + "topLeft": { + "x": 70.944, + "y": 291.50537 + }, + "width": 54.11808, + "height": 9.85872, + "page": 201 + } + ], + "sectionNumber": 1297, + "textBefore": "", + "textAfter": "", + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:59:02.34Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:59:02.34Z", + "requestedDate": "2022-10-10T11:59:02.34Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "70b3756da45b028b88cf08a89edb89a4", + "type": "manual", + "value": "2.11.4. STEP 4: Exposure assessment – threshold of concern approach", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.3.3 STEP 3, Stage 3: screening for toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 333.37863 + }, + "width": 298.84113, + "height": 8.89428, + "page": 180 + } + ], + "sectionNumber": 1091, + "textBefore": "", + "textAfter": "", + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:57:29.379Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:57:29.38Z", + "requestedDate": "2022-10-10T11:57:29.379Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0742909e25ae0e770aa5bb4107f58a7b", + "type": "manual", + "value": "2.9.1.2. Mammals", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.1.1. Birds", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 499.23865 + }, + "width": 75.05856, + "height": 8.89428, + "page": 148 + } + ], + "sectionNumber": 711, + "textBefore": "", + "textAfter": "", + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:54:43.663Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:54:43.663Z", + "requestedDate": "2022-10-10T11:54:43.663Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "517c4a1b70cd63b41616a6173082335f", + "type": "manual", + "value": "2.11.2. STEP 2: Quantification of potential groundwater contamination", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11 Relevance of metabolites in groundwater", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 561.3986 + }, + "width": 303.47125, + "height": 8.89428, + "page": 180 + } + ], + "sectionNumber": 1088, + "textBefore": "", + "textAfter": "", + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:57:15.453Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:57:15.453Z", + "requestedDate": "2022-10-10T11:57:15.453Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4af04a9e03b1c1257a39ef3a0ba9958a", + "type": "manual", + "value": "3.1.1 Proposal on acceptability against the approval criteria – Article 4 and Annex II of Regulation (EC) No 1107/2009", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 364.79865 + }, + "width": 512.7403, + "height": 8.89428, + "page": 183 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:58:15.62Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:58:15.62Z", + "requestedDate": "2022-10-10T11:58:15.62Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3f0d0f57a0509c8df1a26b038f996aea", + "type": "manual", + "value": "Table of contents", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 759.66864 + }, + "width": 73.26576, + "height": 8.89428, + "page": 5 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:59:34.487Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:59:34.487Z", + "requestedDate": "2022-10-10T11:59:34.487Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "af5e90b324c13c890e6cceb7cad62fd8", + "type": "manual", + "value": "Level 2", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 260.69, + "y": 742.476 + }, + "width": 73.992, + "height": 21.432, + "page": 18 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:46:30.859Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:46:30.859Z", + "requestedDate": "2022-10-10T11:46:30.859Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "103b89d98783d3bd5671cc66d6cb3b96", + "type": "manual", + "value": "2.11.5. STEP 5: Refined risk assessment", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.3.3 STEP 3, Stage 3: screening for toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 292.21863 + }, + "width": 169.83992, + "height": 8.89428, + "page": 180 + } + ], + "sectionNumber": 1091, + "textBefore": "", + "textAfter": "", + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:57:35.968Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:57:35.968Z", + "requestedDate": "2022-10-10T11:57:35.968Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5c9f40261b4536fea1b03302894601c2", + "type": "manual", + "value": "Version History", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 263.69, + "y": 742.1486 + }, + "width": 67.90728, + "height": 8.89428, + "page": 4 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:44:21.243Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:44:21.243Z", + "requestedDate": "2022-10-10T11:44:21.243Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bd4b6f925db3260a2b96fc8916cc2233", + "type": "manual", + "value": "2.11.6. Overall conclusion", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 250.90865 + }, + "width": 109.56996, + "height": 8.89428, + "page": 180 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:57:42.328Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:57:42.328Z", + "requestedDate": "2022-10-10T11:57:42.328Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a7c1c8066bb1b67132a438d5c39ec420", + "type": "manual", + "value": "Appendix 1 Guidance documents used in this assessment", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "APPENDICES", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 142.94, + "y": 727.5154 + }, + "width": 208.8216, + "height": 9.85872, + "page": 200 + }, + { + "topLeft": { + "x": 70.944, + "y": 727.5154 + }, + "width": 54.11808, + "height": 9.85872, + "page": 200 + } + ], + "sectionNumber": 1297, + "textBefore": "", + "textAfter": "", + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:58:49.956Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:58:49.956Z", + "requestedDate": "2022-10-10T11:58:49.956Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8ccd6331be9e11aed7319ba9d22d7516", + "type": "manual", + "value": "2.11.3. STEP 3: Hazard assessment – identification of relevant metabolites", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 456.39865 + }, + "width": 316.027, + "height": 8.89428, + "page": 180 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:57:22.517Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:57:22.517Z", + "requestedDate": "2022-10-10T11:57:22.517Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c973b959735bbaea10a06969bcd3c807", + "type": "manual", + "value": "3\nProposed decision with respect to the application", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 96.984, + "y": 447.26865 + }, + "width": 208.19469, + "height": 8.89428, + "page": 183 + }, + { + "topLeft": { + "x": 70.92, + "y": 447.26865 + }, + "width": 4.98, + "height": 8.89428, + "page": 183 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:58:08.341Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:58:08.341Z", + "requestedDate": "2022-10-10T11:58:08.341Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "783f4ab287973fff7a4a1f387719a837", + "type": "manual", + "value": "2.11.1. STEP 1: Exclusion of degradation products of no concern", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11 Relevance of metabolites in groundwater", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 631.98865 + }, + "width": 275.21472, + "height": 8.89428, + "page": 180 + } + ], + "sectionNumber": 1088, + "textBefore": "", + "textAfter": "", + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:57:08.578Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:57:08.578Z", + "requestedDate": "2022-10-10T11:57:08.578Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "89be91f00dfccc932110d786308c550c", + "type": "manual", + "value": "Level 3", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 383.93, + "y": 496.556 + }, + "width": 73.992, + "height": 21.432, + "page": 183 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T11:58:00.473Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T11:58:00.473Z", + "requestedDate": "2022-10-10T11:58:00.473Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + } + ], + "legalBasis": [ + { + "name": "n-a.", + "description": "n-a.", + "reason": "n-a." + } + ], + "dictionaryVersion": 13, + "dossierDictionaryVersion": 1, + "rulesVersion": 3, + "legalBasisVersion": 2 +} \ No newline at end of file diff --git a/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Headlines/S-Metolachlor_RAR_01_Volume_1_2018-09-06_REDACTION_LOG.json b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Headlines/S-Metolachlor_RAR_01_Volume_1_2018-09-06_REDACTION_LOG.json new file mode 100644 index 00000000..78424e0a --- /dev/null +++ b/redaction-service-v1/redaction-service-server-v1/src/test/resources/files/Headlines/S-Metolachlor_RAR_01_Volume_1_2018-09-06_REDACTION_LOG.json @@ -0,0 +1,13720 @@ +{ + "analysisVersion": 1, + "analysisNumber": 1, + "redactionLogEntry": [ + { + "id": "b32da2b5707223fb95a0f93034f04274", + "type": "headline", + "value": "1 Statement of subject matter and purpose for which this report has been prepared and background information on the application ............ 9", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "1 Statement of subject matter and purpose for which this report has\nbeen prepared and background information on the application ............ 9", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 732.938 + }, + "width": 6, + "height": -11.358002, + "page": 3 + }, + { + "topLeft": { + "x": 156.02, + "y": 732.938 + }, + "width": 339.72003, + "height": -11.358002, + "page": 3 + }, + { + "topLeft": { + "x": 156.02, + "y": 719.138 + }, + "width": 368.62, + "height": -11.358002, + "page": 3 + } + ], + "sectionNumber": 12, + "textBefore": null, + "textAfter": " 1.1 1.1.1", + "comments": null, + "startOffset": 0, + "endOffset": 142, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563140354Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:03:45.201299Z", + "requestedDate": "2022-10-10T12:03:45.177937Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "93c3b1510b4e7eaa8ac1e1c6ba8988b2", + "type": "headline", + "value": "1.1.3 1.1.4", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "1.1.3\n1.1.4", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 644.474 + }, + "width": 24, + "height": -11.453995, + "page": 3 + }, + { + "topLeft": { + "x": 70.944, + "y": 630.67395 + }, + "width": 24, + "height": -11.453995, + "page": 3 + } + ], + "sectionNumber": 13, + "textBefore": null, + "textAfter": " 1.2 1.2.1", + "comments": null, + "startOffset": 0, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563143694Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:03:49.144718Z", + "requestedDate": "2022-10-10T12:03:49.129366Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "76fd7d61b70a6c12efb797db19a31e47", + "type": "headline", + "value": "2.6.12", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "2.6.12", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 262.82397 + }, + "width": 30, + "height": -11.4539795, + "page": 4 + } + ], + "sectionNumber": 15, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 6, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563144054Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:04:10.788579Z", + "requestedDate": "2022-10-10T12:04:10.775355Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bae1cafb4cebf89a3e996064617e6d90", + "type": "headline", + "value": "2.4.2 2.4.3", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "2.4.2\n2.4.3", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 556.604 + }, + "width": 24, + "height": -11.45401, + "page": 4 + }, + { + "topLeft": { + "x": 70.944, + "y": 542.80396 + }, + "width": 24, + "height": -11.45401, + "page": 4 + } + ], + "sectionNumber": 14, + "textBefore": null, + "textAfter": " 2.5 2.5.1", + "comments": null, + "startOffset": 0, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563144404Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:04:06.789248Z", + "requestedDate": "2022-10-10T12:04:06.772008Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "107d6ca868c16954c6f0015b15f4f3dc", + "type": "headline", + "value": "2.6.14", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "2.6.14", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 207.594 + }, + "width": 30, + "height": -11.4539795, + "page": 4 + } + ], + "sectionNumber": 17, + "textBefore": null, + "textAfter": " 2.7 2.7.1", + "comments": null, + "startOffset": 0, + "endOffset": 6, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563144784Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:04:17.716935Z", + "requestedDate": "2022-10-10T12:04:17.701587Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "330db75fc6aabf74f96ca439ecfba3b8", + "type": "headline", + "value": "2.6.13", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "2.6.13", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 235.224 + }, + "width": 30, + "height": -11.4539795, + "page": 4 + } + ], + "sectionNumber": 16, + "textBefore": null, + "textAfter": " 2.6 2.6.1", + "comments": null, + "startOffset": 0, + "endOffset": 6, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563145134Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:04:14.205524Z", + "requestedDate": "2022-10-10T12:04:14.190398Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "1954e1f2e5c010882d1daa020140b253", + "type": "headline", + "value": "2.7.10 2.7.11", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "2.7.10\n2.7.11", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 521.204 + }, + "width": 30, + "height": -11.45401, + "page": 5 + }, + { + "topLeft": { + "x": 70.944, + "y": 507.404 + }, + "width": 30, + "height": -11.45401, + "page": 5 + } + ], + "sectionNumber": 18, + "textBefore": null, + "textAfter": " 2.7.3 2.7.3.1", + "comments": null, + "startOffset": 0, + "endOffset": 13, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563145534Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:04:23.192755Z", + "requestedDate": "2022-10-10T12:04:23.178086Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "2878630c9a2df7da3558bd887e5336ee", + "type": "headline", + "value": "3.1.4.1 3.1.4.2", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "3.1.4.1\n3.1.4.2", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 219.23395 + }, + "width": 33, + "height": -11.4539795, + "page": 6 + }, + { + "topLeft": { + "x": 70.944, + "y": 205.43396 + }, + "width": 33, + "height": -11.4539795, + "page": 6 + } + ], + "sectionNumber": 20, + "textBefore": null, + "textAfter": " 3.1 3.1.1", + "comments": null, + "startOffset": 0, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563145944Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:04:31.840329Z", + "requestedDate": "2022-10-10T12:04:31.814032Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a5d93f248d9f29be8f069526e2fa9492", + "type": "headline", + "value": "3 Proposed decision with respect to the application ................................ 189", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "3 Proposed decision with respect to the application ................................ 189", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 390.52798 + }, + "width": 6, + "height": -11.358002, + "page": 6 + }, + { + "topLeft": { + "x": 156.02, + "y": 390.52798 + }, + "width": 368.62, + "height": -11.358002, + "page": 6 + } + ], + "sectionNumber": 19, + "textBefore": null, + "textAfter": " 3.1.1.1 3.1.1.2", + "comments": null, + "startOffset": 0, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563146274Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:04:28.102711Z", + "requestedDate": "2022-10-10T12:04:28.087793Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "285c20ca1e1ef41ed172885188c14121", + "type": "headline", + "value": "3.1.8 3.1.9", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "3.1.8\n3.1.9", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 728.234 + }, + "width": 24, + "height": -11.453995, + "page": 7 + }, + { + "topLeft": { + "x": 70.944, + "y": 714.43396 + }, + "width": 24, + "height": -11.453995, + "page": 7 + } + ], + "sectionNumber": 23, + "textBefore": null, + "textAfter": " 3.1.6 3.1.7", + "comments": null, + "startOffset": 0, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563146604Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:04:37.96519Z", + "requestedDate": "2022-10-10T12:04:37.945221Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "fc84cf6217f5650d56b0f7a7ff5502af", + "type": "headline", + "value": "1.1.3 EU Regulatory history for use in plant protection products", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1.3 EU Regulatory history for use in plant protection products", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 407.94797 + }, + "width": 24, + "height": -11.358002, + "page": 9 + }, + { + "topLeft": { + "x": 141.74, + "y": 407.94797 + }, + "width": 300.2, + "height": -11.358002, + "page": 9 + } + ], + "sectionNumber": 28, + "textBefore": null, + "textAfter": " S-Metolachlor was", + "comments": null, + "startOffset": 0, + "endOffset": 64, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563147234Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "652bb188641b5a9868cd50bc05614e8e", + "type": "headline", + "value": "1.1.1 Purpose for which the renewal assessment report was prepared", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1.1 Purpose for which the renewal assessment report was prepared", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 635.258 + }, + "width": 24, + "height": -11.358002, + "page": 9 + }, + { + "topLeft": { + "x": 141.74, + "y": 635.258 + }, + "width": 322.80804, + "height": -11.358002, + "page": 9 + } + ], + "sectionNumber": 26, + "textBefore": null, + "textAfter": " This renewal", + "comments": null, + "startOffset": 0, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563147554Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "313f979b56ac38fba97621d8d6c3cf2a", + "type": "headline", + "value": "1.1.2 Arrangements between rapporteur Member State and co-rapporteur Member State", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1.2 Arrangements between rapporteur Member State and co-rapporteur\nMember State", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 534.78796 + }, + "width": 24, + "height": -11.358002, + "page": 9 + }, + { + "topLeft": { + "x": 141.74, + "y": 534.78796 + }, + "width": 382.89203, + "height": -11.358002, + "page": 9 + }, + { + "topLeft": { + "x": 141.74, + "y": 520.988 + }, + "width": 72.198, + "height": -11.358002, + "page": 9 + } + ], + "sectionNumber": 27, + "textBefore": null, + "textAfter": " According to", + "comments": null, + "startOffset": 0, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563147884Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "940e9ebdaf90bcf2d4db077f595baec5", + "type": "headline", + "value": "1 Statement of subject matter and purpose for which this report has been prepared and background information on the application", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1 Statement of subject matter and purpose for which this report\nhas been prepared and background information on the application", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 744.2889 + }, + "width": 7.0199966, + "height": -12.26886, + "page": 9 + }, + { + "topLeft": { + "x": 141.74, + "y": 744.2889 + }, + "width": 382.8028, + "height": -12.26886, + "page": 9 + }, + { + "topLeft": { + "x": 141.74, + "y": 728.20886 + }, + "width": 382.77533, + "height": -12.26886, + "page": 9 + }, + { + "topLeft": { + "x": 141.74, + "y": 712.12885 + }, + "width": 23.39064, + "height": -12.26886, + "page": 9 + } + ], + "sectionNumber": 24, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 127, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563148214Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5d1090dd81d53bc3a5241bbc72b14ef8", + "type": "headline", + "value": "1.1 Context in which the renewal assessment report was prepared", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1 Context in which the renewal assessment report was prepared", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 673.058 + }, + "width": 15, + "height": -11.358002, + "page": 9 + }, + { + "topLeft": { + "x": 141.74, + "y": 673.058 + }, + "width": 317.28802, + "height": -11.358002, + "page": 9 + } + ], + "sectionNumber": 25, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563148564Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e96c5f0d1d5d86c63db8afe1ab25d753", + "type": "headline", + "value": "1.2.3 Information relating to the collective provision of dossiers", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.2.3 Information relating to the collective provision of dossiers", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 99.50195 + }, + "width": 24, + "height": -11.357971, + "page": 10 + }, + { + "topLeft": { + "x": 141.74, + "y": 99.50195 + }, + "width": 295.15204, + "height": -11.357971, + "page": 10 + } + ], + "sectionNumber": 33, + "textBefore": null, + "textAfter": " Syngenta Limited", + "comments": null, + "startOffset": 0, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563148994Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a14b3cf14950818cca7e372ca9045984", + "type": "headline", + "value": "1.1.4 Evaluations carried out under other regulatory contexts", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.1.4 Evaluations carried out under other regulatory contexts", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 732.698 + }, + "width": 24, + "height": -11.358002, + "page": 10 + }, + { + "topLeft": { + "x": 141.74, + "y": 732.698 + }, + "width": 286.03998, + "height": -11.358002, + "page": 10 + } + ], + "sectionNumber": 29, + "textBefore": null, + "textAfter": " The following", + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563149414Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "76fe901bc4233393ad1a1a0462a71f09", + "type": "headline", + "value": "1.2.1 Name and address of applicant(s) for approval of the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.2.1 Name and address of applicant(s) for approval of the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 338.328 + }, + "width": 24, + "height": -11.357971, + "page": 10 + }, + { + "topLeft": { + "x": 141.74, + "y": 338.328 + }, + "width": 355.92004, + "height": -11.357971, + "page": 10 + } + ], + "sectionNumber": 31, + "textBefore": null, + "textAfter": " Name: Syngenta", + "comments": null, + "startOffset": 0, + "endOffset": 75, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563149794Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a0dea7c2f6af748bfcfd1c0178903477", + "type": "headline", + "value": "1.2.2 Producer or producers of the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.2.2 Producer or producers of the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 162.01794 + }, + "width": 24, + "height": -11.357971, + "page": 10 + }, + { + "topLeft": { + "x": 141.74, + "y": 162.01794 + }, + "width": 234.312, + "height": -11.357971, + "page": 10 + } + ], + "sectionNumber": 32, + "textBefore": null, + "textAfter": " Confidential information,", + "comments": null, + "startOffset": 0, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563150104Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6450c63ad328473acb8fb434dbeb45bc", + "type": "headline", + "value": "1.2 Applicant(s) information", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.2 Applicant(s) information", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 376.12796 + }, + "width": 15, + "height": -11.358002, + "page": 10 + }, + { + "topLeft": { + "x": 141.74, + "y": 376.12796 + }, + "width": 127.673996, + "height": -11.358002, + "page": 10 + } + ], + "sectionNumber": 30, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 28, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563150444Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0e7e4c506937abbadfc561abf4de4997", + "type": "headline", + "value": "1.3 Identity of the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3 Identity of the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 15, + "height": -11.358002, + "page": 11 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 158.70601, + "height": -11.358002, + "page": 11 + } + ], + "sectionNumber": 34, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563150754Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b6d79e7f74298faed8b2d7fc96fe39d5", + "type": "headline", + "value": "1.3.3 Producer’s development code numbers", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.3 Producer’s development code numbers", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 508.26797 + }, + "width": 24, + "height": -11.358002, + "page": 11 + }, + { + "topLeft": { + "x": 141.74, + "y": 508.26797 + }, + "width": 199.23799, + "height": -11.358002, + "page": 11 + } + ], + "sectionNumber": 37, + "textBefore": null, + "textAfter": " CGA 77102", + "comments": null, + "startOffset": 0, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563151074Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "aa7f8e35440b181a037650e7a5e599ea", + "type": "headline", + "value": "1.3.4 CAS, EC and CIPAC numbers", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.4 CAS, EC and CIPAC numbers", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 445.748 + }, + "width": 24, + "height": -11.358002, + "page": 11 + }, + { + "topLeft": { + "x": 141.74, + "y": 445.748 + }, + "width": 157.29002, + "height": -11.358002, + "page": 11 + } + ], + "sectionNumber": 38, + "textBefore": null, + "textAfter": " CAS: 87392-12-9", + "comments": null, + "startOffset": 0, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563151394Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d6252bc7df7126aab3e7a26814a17c75", + "type": "headline", + "value": "1.3.1 Common name proposed or ISO-accepted and synonyms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.1 Common name proposed or ISO-accepted and synonyms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 731.498 + }, + "width": 24, + "height": -11.358002, + "page": 11 + }, + { + "topLeft": { + "x": 141.74, + "y": 731.498 + }, + "width": 290.846, + "height": -11.358002, + "page": 11 + } + ], + "sectionNumber": 35, + "textBefore": null, + "textAfter": " S-Metolachlor", + "comments": null, + "startOffset": 0, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563151704Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "1b967a0a6743e32ba5e5a4f7d88022b5", + "type": "headline", + "value": "1.3.2 Chemical name (IUPAC and CA nomenclature)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.2 Chemical name (IUPAC and CA nomenclature)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 669.09796 + }, + "width": 24, + "height": -11.358002, + "page": 11 + }, + { + "topLeft": { + "x": 141.74, + "y": 669.09796 + }, + "width": 243.05998, + "height": -11.358002, + "page": 11 + } + ], + "sectionNumber": 36, + "textBefore": null, + "textAfter": " IUPAC: Mixture", + "comments": null, + "startOffset": 0, + "endOffset": 47, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563152044Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a0879a5393cfa0d1fc9f07cf0f354053", + "type": "headline", + "value": "1.3.5 Molecular and structural formulae, molecular mass", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.5 Molecular and structural formulae, molecular mass", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 331.36798 + }, + "width": 24, + "height": -11.357971, + "page": 11 + }, + { + "topLeft": { + "x": 141.74, + "y": 331.36798 + }, + "width": 264.068, + "height": -11.357971, + "page": 11 + } + ], + "sectionNumber": 43, + "textBefore": null, + "textAfter": " Molecular formular:", + "comments": null, + "startOffset": 0, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563152414Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "2a3a1df41d2ec151093765a692b9f466", + "type": "headline", + "value": "1.3.8.3 Relevant impurities", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.8.3 Relevant impurities", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 138.13794 + }, + "width": 33, + "height": -11.357971, + "page": 12 + }, + { + "topLeft": { + "x": 141.74, + "y": 138.13794 + }, + "width": 100.87198, + "height": -11.357971, + "page": 12 + } + ], + "sectionNumber": 49, + "textBefore": null, + "textAfter": " There are", + "comments": null, + "startOffset": 0, + "endOffset": 27, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563152734Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "716b7f7e4a3597bdea9e2624c1663ec8", + "type": "headline", + "value": "1.3.6 Method of manufacture (synthesis pathway) of the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.6 Method of manufacture (synthesis pathway) of the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 489.06796 + }, + "width": 24, + "height": -11.358002, + "page": 12 + }, + { + "topLeft": { + "x": 141.74, + "y": 489.06796 + }, + "width": 343.596, + "height": -11.358002, + "page": 12 + } + ], + "sectionNumber": 44, + "textBefore": null, + "textAfter": " Confidential information,", + "comments": null, + "startOffset": 0, + "endOffset": 71, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563153074Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "cf2d18a705eb9c9f7b8a62d081e61362", + "type": "headline", + "value": "1.3.8 Identity and content of additives (such as stabilisers) and impurities", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.8 Identity and content of additives (such as stabilisers) and impurities", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 300.88794 + }, + "width": 24, + "height": -11.357971, + "page": 12 + }, + { + "topLeft": { + "x": 141.74, + "y": 300.88794 + }, + "width": 346.37598, + "height": -11.357971, + "page": 12 + } + ], + "sectionNumber": 46, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 76, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563153414Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7da68e6296bae7fe33a1ec1849b079db", + "type": "headline", + "value": "1.3.8.1 Additives", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.8.1 Additives", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 263.08795 + }, + "width": 33, + "height": -11.357971, + "page": 12 + }, + { + "topLeft": { + "x": 141.74, + "y": 263.08795 + }, + "width": 48.696, + "height": -11.357971, + "page": 12 + } + ], + "sectionNumber": 47, + "textBefore": null, + "textAfter": " Confidential information,", + "comments": null, + "startOffset": 0, + "endOffset": 17, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563153754Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "05b1d765a3578027e6b80afaaea598d9", + "type": "headline", + "value": "1.3.8.2 Significant impurities", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.8.2 Significant impurities", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 200.65796 + }, + "width": 33, + "height": -11.357971, + "page": 12 + }, + { + "topLeft": { + "x": 141.74, + "y": 200.65796 + }, + "width": 110.92799, + "height": -11.357971, + "page": 12 + } + ], + "sectionNumber": 48, + "textBefore": null, + "textAfter": " Confidential information,", + "comments": null, + "startOffset": 0, + "endOffset": 30, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563154084Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "30de0562606defd44969dd242a9f1273", + "type": "headline", + "value": "1.3.7 Specification of purity of the active substance in g/kg", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.7 Specification of purity of the active substance in g/kg", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 426.54797 + }, + "width": 24, + "height": -11.358002, + "page": 12 + }, + { + "topLeft": { + "x": 141.74, + "y": 426.54797 + }, + "width": 269.97595, + "height": -11.358002, + "page": 12 + } + ], + "sectionNumber": 45, + "textBefore": null, + "textAfter": " Minimum purity", + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563154404Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "06381fe5ed627e9f2aa386a45e18bd80", + "type": "headline", + "value": "1.4.4 Detailed quantitative and qualitative information on the composition of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.4 Detailed quantitative and qualitative information on the composition of\nthe plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 189.61798 + }, + "width": 24, + "height": -11.357971, + "page": 13 + }, + { + "topLeft": { + "x": 141.74, + "y": 189.61798 + }, + "width": 382.63397, + "height": -11.357971, + "page": 13 + }, + { + "topLeft": { + "x": 141.74, + "y": 175.818 + }, + "width": 144.55202, + "height": -11.357971, + "page": 13 + } + ], + "sectionNumber": 55, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 106, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563154714Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "967dd9171cab5200c91452e69e47fc6e", + "type": "headline", + "value": "1.4.3 Trade name or proposed trade name and producer's development code number of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.3 Trade name or proposed trade name and producer's development code\nnumber of the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 291.16797 + }, + "width": 24, + "height": -11.357971, + "page": 13 + }, + { + "topLeft": { + "x": 141.74, + "y": 291.16797 + }, + "width": 382.40405, + "height": -11.357971, + "page": 13 + }, + { + "topLeft": { + "x": 141.74, + "y": 277.36798 + }, + "width": 200.79597, + "height": -11.357971, + "page": 13 + } + ], + "sectionNumber": 54, + "textBefore": null, + "textAfter": " Trade name:", + "comments": null, + "startOffset": 0, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563155054Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "15698f457c1e4ff4a4fc53eeb544b7e3", + "type": "headline", + "value": "1.4.2 Producer of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.2 Producer of the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 492.78796 + }, + "width": 24, + "height": -11.358002, + "page": 13 + }, + { + "topLeft": { + "x": 141.74, + "y": 492.78796 + }, + "width": 207.99602, + "height": -11.358002, + "page": 13 + } + ], + "sectionNumber": 53, + "textBefore": null, + "textAfter": " Name: Syngenta", + "comments": null, + "startOffset": 0, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563155444Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "632724281d3bce7364b930c401430264", + "type": "headline", + "value": "1.4.4.1 Composition of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.4.1 Composition of the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 138.01794 + }, + "width": 33, + "height": -11.357971, + "page": 13 + }, + { + "topLeft": { + "x": 141.74, + "y": 138.01794 + }, + "width": 226.23601, + "height": -11.357971, + "page": 13 + } + ], + "sectionNumber": 56, + "textBefore": null, + "textAfter": " Content of", + "comments": null, + "startOffset": 0, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563155764Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "15c4b5c138888ba72eb01d4f26a414e8", + "type": "headline", + "value": "1.4 Information on the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4 Information on the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 706.89795 + }, + "width": 15, + "height": -11.358002, + "page": 13 + }, + { + "topLeft": { + "x": 141.74, + "y": 706.89795 + }, + "width": 226.23601, + "height": -11.358002, + "page": 13 + } + ], + "sectionNumber": 51, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 47, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563156094Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "cc75355ea9073a4f8cce4550ed8ed25d", + "type": "headline", + "value": "1.4.1 Applicant", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.1 Applicant", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 669.09796 + }, + "width": 24, + "height": -11.358002, + "page": 13 + }, + { + "topLeft": { + "x": 141.74, + "y": 669.09796 + }, + "width": 50.75998, + "height": -11.358002, + "page": 13 + } + ], + "sectionNumber": 52, + "textBefore": null, + "textAfter": " Name: Syngenta", + "comments": null, + "startOffset": 0, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563162254Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "483be1fe606562a9c34e7034c14c44e6", + "type": "headline", + "value": "1.3.9 Analytical profile of batches", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.3.9 Analytical profile of batches", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 24, + "height": -11.358002, + "page": 13 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 144.024, + "height": -11.358002, + "page": 13 + } + ], + "sectionNumber": 50, + "textBefore": null, + "textAfter": " Confidential information,", + "comments": null, + "startOffset": 0, + "endOffset": 35, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563162674Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "add8a2ba54d26f65204e0413ad24597a", + "type": "headline", + "value": "1.4.8 Effects on harmful organisms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.8 Effects on harmful organisms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 375.76797 + }, + "width": 24, + "height": -11.358002, + "page": 14 + }, + { + "topLeft": { + "x": 141.74, + "y": 375.76797 + }, + "width": 151.52998, + "height": -11.358002, + "page": 14 + } + ], + "sectionNumber": 62, + "textBefore": null, + "textAfter": " Sensitive weeds", + "comments": null, + "startOffset": 0, + "endOffset": 34, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563163014Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bfffcca5e74fb62aac6b61b4db177de6", + "type": "headline", + "value": "1.4.6 Function", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.6 Function", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 500.70798 + }, + "width": 24, + "height": -11.358002, + "page": 14 + }, + { + "topLeft": { + "x": 141.74, + "y": 500.70798 + }, + "width": 45.89998, + "height": -11.358002, + "page": 14 + } + ], + "sectionNumber": 60, + "textBefore": null, + "textAfter": " Herbicide in", + "comments": null, + "startOffset": 0, + "endOffset": 14, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563163354Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "75b8b0496f826a6d6d092cd839901905", + "type": "headline", + "value": "1.4.4.2 Information on the active substances", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.4.2 Information on the active substances", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 33, + "height": -11.358002, + "page": 14 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 187.94402, + "height": -11.358002, + "page": 14 + } + ], + "sectionNumber": 57, + "textBefore": null, + "textAfter": " ISO common", + "comments": null, + "startOffset": 0, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563163674Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "185046e9ee00222903aa4f37a79185c8", + "type": "headline", + "value": "1.4.5 Type and code of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.5 Type and code of the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 575.82794 + }, + "width": 24, + "height": -11.358002, + "page": 14 + }, + { + "topLeft": { + "x": 141.74, + "y": 575.82794 + }, + "width": 234.30598, + "height": -11.358002, + "page": 14 + } + ], + "sectionNumber": 59, + "textBefore": null, + "textAfter": " A9396G (synonym:", + "comments": null, + "startOffset": 0, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563164004Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6b7a558cefa311dd541116f8ee655498", + "type": "headline", + "value": "1.4.7 Field of use envisaged", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.7 Field of use envisaged", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 438.30798 + }, + "width": 24, + "height": -11.358002, + "page": 14 + }, + { + "topLeft": { + "x": 141.74, + "y": 438.30798 + }, + "width": 111.611984, + "height": -11.358002, + "page": 14 + } + ], + "sectionNumber": 61, + "textBefore": null, + "textAfter": " Herbicide in", + "comments": null, + "startOffset": 0, + "endOffset": 28, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563164334Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bca25b4734ab9231809ba2c77a3920dc", + "type": "headline", + "value": "1.4.4.3 Information on safeners, synergists and co-formulants", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.4.4.3 Information on safeners, synergists and co-formulants", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 638.258 + }, + "width": 33, + "height": -11.358002, + "page": 14 + }, + { + "topLeft": { + "x": 141.74, + "y": 638.258 + }, + "width": 277.35797, + "height": -11.358002, + "page": 14 + } + ], + "sectionNumber": 58, + "textBefore": null, + "textAfter": " Confidential information,", + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563164664Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "eca147304f579f50210cdd6f7382696e", + "type": "headline", + "value": "1.5.1 Details of representative uses", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.5.1 Details of representative uses", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 460.89798 + }, + "width": 24, + "height": -11.358002, + "page": 15 + }, + { + "topLeft": { + "x": 141.74, + "y": 460.89798 + }, + "width": 148.47597, + "height": -11.358002, + "page": 15 + } + ], + "sectionNumber": 78, + "textBefore": null, + "textAfter": " Table 1.5-1:", + "comments": null, + "startOffset": 0, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563165004Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8abdd460681dadd15233c61eeed67450", + "type": "headline", + "value": "1.5 Detailed uses of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.5 Detailed uses of the plant protection product", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 498.69797 + }, + "width": 15, + "height": -11.358002, + "page": 15 + }, + { + "topLeft": { + "x": 141.74, + "y": 498.69797 + }, + "width": 227.808, + "height": -11.358002, + "page": 15 + } + ], + "sectionNumber": 63, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563165334Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7c4d5e8eadb5c00f794020cf546f9104", + "type": "headline", + "value": "1.5.3 Details of other uses applied for to support the setting of MRLs for uses beyond the representative uses", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.5.3 Details of other uses applied for to support the setting of MRLs for uses\nbeyond the representative uses", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 581.70795 + }, + "width": 24, + "height": -11.358002, + "page": 17 + }, + { + "topLeft": { + "x": 141.74, + "y": 581.70795 + }, + "width": 382.5, + "height": -11.358002, + "page": 17 + }, + { + "topLeft": { + "x": 141.74, + "y": 567.90796 + }, + "width": 153.45598, + "height": -11.358002, + "page": 17 + } + ], + "sectionNumber": 80, + "textBefore": null, + "textAfter": " No information.", + "comments": null, + "startOffset": 0, + "endOffset": 110, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563165674Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "64eb31f62c59b280dda39ae2aefb0d49", + "type": "headline", + "value": "1.5.2 Further information on representative uses", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.5.2 Further information on representative uses", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 745.298 + }, + "width": 24, + "height": -11.358002, + "page": 17 + }, + { + "topLeft": { + "x": 141.74, + "y": 745.298 + }, + "width": 216.44405, + "height": -11.358002, + "page": 17 + } + ], + "sectionNumber": 79, + "textBefore": null, + "textAfter": " For details", + "comments": null, + "startOffset": 0, + "endOffset": 48, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563166014Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "802e6739bdfe5107215d920d48fff6a8", + "type": "headline", + "value": "1.5.4 Overview on authorisations in EU Member States", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "1.5.4 Overview on authorisations in EU Member States", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 505.38797 + }, + "width": 24, + "height": -11.358002, + "page": 17 + }, + { + "topLeft": { + "x": 141.74, + "y": 505.38797 + }, + "width": 249.22801, + "height": -11.358002, + "page": 17 + } + ], + "sectionNumber": 83, + "textBefore": null, + "textAfter": " Different s-metolachlor", + "comments": null, + "startOffset": 0, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563166344Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "dee411cc4fa679181ae9dbf8a035cca1", + "type": "headline", + "value": "2.1.1 Summary of identity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.1.1 Summary of identity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 663.33795 + }, + "width": 24, + "height": -11.358002, + "page": 19 + }, + { + "topLeft": { + "x": 141.74, + "y": 663.33795 + }, + "width": 105.89998, + "height": -11.358002, + "page": 19 + } + ], + "sectionNumber": 86, + "textBefore": null, + "textAfter": " Active substance", + "comments": null, + "startOffset": 0, + "endOffset": 25, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563166654Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a6d098fab579563e5dfc529eea97317c", + "type": "headline", + "value": "2 Summary of active substance hazard and of product risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2 Summary of active substance hazard and of product risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 756.2889 + }, + "width": 7.0199966, + "height": -12.26886, + "page": 19 + }, + { + "topLeft": { + "x": 141.74, + "y": 756.2889 + }, + "width": 382.89526, + "height": -12.26886, + "page": 19 + }, + { + "topLeft": { + "x": 141.74, + "y": 740.20886 + }, + "width": 52.888687, + "height": -12.26886, + "page": 19 + } + ], + "sectionNumber": 84, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 67, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563166974Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "065e6695e1f33cb809db37828cdb6137", + "type": "headline", + "value": "2.2.1 Summary of physical and chemical properties of the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.2.1 Summary of physical and chemical properties of the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 411.30798 + }, + "width": 24, + "height": -11.358002, + "page": 19 + }, + { + "topLeft": { + "x": 141.74, + "y": 411.30798 + }, + "width": 352.69202, + "height": -11.358002, + "page": 19 + } + ], + "sectionNumber": 88, + "textBefore": null, + "textAfter": " S-metolachlor is", + "comments": null, + "startOffset": 0, + "endOffset": 73, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563167274Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5c93b5128de3514972c9752535842512", + "type": "headline", + "value": "2.2 Physical and chemical properties", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.2 Physical and chemical properties", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 449.10797 + }, + "width": 15, + "height": -11.358002, + "page": 19 + }, + { + "topLeft": { + "x": 141.74, + "y": 449.10797 + }, + "width": 168.85197, + "height": -11.358002, + "page": 19 + } + ], + "sectionNumber": 87, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563167594Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "98a07648283fa70f4ce7f78ba77c4d44", + "type": "headline", + "value": "2.1 Identity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.1 Identity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 701.138 + }, + "width": 15, + "height": -11.358002, + "page": 19 + }, + { + "topLeft": { + "x": 141.74, + "y": 701.138 + }, + "width": 40.65599, + "height": -11.358002, + "page": 19 + } + ], + "sectionNumber": 85, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563167894Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "69fffdfa5cf94435b0d4489400b316ea", + "type": "headline", + "value": "2.2.2 Summary of physical and chemical properties of the plant protection product", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.2.2 Summary of physical and chemical properties of the plant protection\nproduct", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 260.208 + }, + "width": 24, + "height": -11.357971, + "page": 19 + }, + { + "topLeft": { + "x": 141.74, + "y": 260.208 + }, + "width": 382.78406, + "height": -11.357971, + "page": 19 + }, + { + "topLeft": { + "x": 141.74, + "y": 246.40796 + }, + "width": 40.439987, + "height": -11.357971, + "page": 19 + } + ], + "sectionNumber": 89, + "textBefore": null, + "textAfter": " The product", + "comments": null, + "startOffset": 0, + "endOffset": 81, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563168224Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b7e7b6e4877e5df67a2378000ec58d7b", + "type": "headline", + "value": "2.3.1 Summary of effectiveness", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3.1 Summary of effectiveness", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 731.498 + }, + "width": 24, + "height": -11.358002, + "page": 20 + }, + { + "topLeft": { + "x": 141.74, + "y": 731.498 + }, + "width": 130.57204, + "height": -11.358002, + "page": 20 + } + ], + "sectionNumber": 91, + "textBefore": null, + "textAfter": " Major annual", + "comments": null, + "startOffset": 0, + "endOffset": 30, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563168534Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "760fcfce8bc83a01e313c0a5bf4b4c30", + "type": "headline", + "value": "2.3.4 Summary of observations on other undesirable or unintended side-effects", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3.4 Summary of observations on other undesirable or unintended side-effects", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 354.40796 + }, + "width": 24, + "height": -11.358002, + "page": 20 + }, + { + "topLeft": { + "x": 141.74, + "y": 354.40796 + }, + "width": 374.97998, + "height": -11.358002, + "page": 20 + } + ], + "sectionNumber": 94, + "textBefore": null, + "textAfter": " A9396G can", + "comments": null, + "startOffset": 0, + "endOffset": 77, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563168914Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "df69307ca0b04c72b593a5d9a1cecc2c", + "type": "headline", + "value": "2.4.1 Summary of methods and precautions concerning handling, storage, transport or fire", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.4.1 Summary of methods and precautions concerning handling, storage,\ntransport or fire", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 228.88794 + }, + "width": 24, + "height": -11.357971, + "page": 20 + }, + { + "topLeft": { + "x": 141.74, + "y": 228.88794 + }, + "width": 382.4281, + "height": -11.357971, + "page": 20 + }, + { + "topLeft": { + "x": 141.74, + "y": 215.05798 + }, + "width": 83.412, + "height": -11.357971, + "page": 20 + } + ], + "sectionNumber": 96, + "textBefore": null, + "textAfter": " Acceptable information", + "comments": null, + "startOffset": 0, + "endOffset": 88, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563169284Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3d77b88341aa143c1c280f010da8ee19", + "type": "headline", + "value": "2.3.3 Summary of adverse effects on treated crops", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3.3 Summary of adverse effects on treated crops", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 442.14798 + }, + "width": 24, + "height": -11.358002, + "page": 20 + }, + { + "topLeft": { + "x": 141.74, + "y": 442.14798 + }, + "width": 227.26799, + "height": -11.358002, + "page": 20 + } + ], + "sectionNumber": 93, + "textBefore": null, + "textAfter": " A9396G is", + "comments": null, + "startOffset": 0, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563169614Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0bb2bcf0fefcf94536b2c50ee206489f", + "type": "headline", + "value": "2.4 Further information", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.4 Further information", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 266.688 + }, + "width": 15, + "height": -11.357971, + "page": 20 + }, + { + "topLeft": { + "x": 141.74, + "y": 266.688 + }, + "width": 104.90399, + "height": -11.357971, + "page": 20 + } + ], + "sectionNumber": 95, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 23, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563169934Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "90680a5f65ce46aae53ae6923e3e0837", + "type": "headline", + "value": "2.3 Data on application and efficacy", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3 Data on application and efficacy", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 15, + "height": -11.358002, + "page": 20 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 165.27599, + "height": -11.358002, + "page": 20 + } + ], + "sectionNumber": 90, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563170254Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "65bcee9a0a84d1067fd44ee075345601", + "type": "headline", + "value": "2.4.2 Summary of procedures for destruction or decontamination", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.4.2 Summary of procedures for destruction or decontamination", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 139.93799 + }, + "width": 24, + "height": -11.357971, + "page": 20 + }, + { + "topLeft": { + "x": 141.74, + "y": 139.93799 + }, + "width": 305.53204, + "height": -11.357971, + "page": 20 + } + ], + "sectionNumber": 97, + "textBefore": null, + "textAfter": " Acceptable information", + "comments": null, + "startOffset": 0, + "endOffset": 62, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563170634Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c7aa452eee949564f7cc8223bb58710e", + "type": "headline", + "value": "2.3.2 Summary of information on the development of resistance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.3.2 Summary of information on the development of resistance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 618.45795 + }, + "width": 24, + "height": -11.358002, + "page": 20 + }, + { + "topLeft": { + "x": 141.74, + "y": 618.45795 + }, + "width": 297.18005, + "height": -11.358002, + "page": 20 + } + ], + "sectionNumber": 92, + "textBefore": null, + "textAfter": " The evaluation", + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563170944Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8190e7384ea95c27b4d4c178f40f99d4", + "type": "headline", + "value": "2.5 Methods of analysis", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5 Methods of analysis", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 694.178 + }, + "width": 15, + "height": -11.358002, + "page": 21 + }, + { + "topLeft": { + "x": 141.74, + "y": 694.178 + }, + "width": 101.45999, + "height": -11.358002, + "page": 21 + } + ], + "sectionNumber": 99, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 23, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563171254Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "74721e29149004deecc085bae3062452", + "type": "headline", + "value": "2.4.3 Summary of emergency measures in case of an accident", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.4.3 Summary of emergency measures in case of an accident", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 24, + "height": -11.358002, + "page": 21 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 284.17194, + "height": -11.358002, + "page": 21 + } + ], + "sectionNumber": 98, + "textBefore": null, + "textAfter": " Acceptable information", + "comments": null, + "startOffset": 0, + "endOffset": 58, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563171574Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b417835d9bc2aab3fb45ca634fc57fa9", + "type": "headline", + "value": "2.5.1 Methods used for the generation of pre-authorisation data", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5.1 Methods used for the generation of pre-authorisation data", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 656.378 + }, + "width": 24, + "height": -11.358002, + "page": 21 + }, + { + "topLeft": { + "x": 141.74, + "y": 656.378 + }, + "width": 291.53003, + "height": -11.358002, + "page": 21 + } + ], + "sectionNumber": 174, + "textBefore": null, + "textAfter": " Active Substance", + "comments": null, + "startOffset": 0, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563171934Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "50024eb749eda0694ed9a1b2b89f2e9e", + "type": "headline", + "value": "2.5.2 Methods for post control and monitoring purposes", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5.2 Methods for post control and monitoring purposes", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 24, + "height": -11.358002, + "page": 27 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 258.10797, + "height": -11.358002, + "page": 27 + } + ], + "sectionNumber": 175, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 54, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563172254Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e1d1feda961b7e6b6c6070ba4b71bc01", + "type": "headline", + "value": "2.5.2.1 Formulation analysis", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5.2.1 Formulation analysis", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 731.498 + }, + "width": 33, + "height": -11.358002, + "page": 27 + }, + { + "topLeft": { + "x": 141.74, + "y": 731.498 + }, + "width": 108.39598, + "height": -11.358002, + "page": 27 + } + ], + "sectionNumber": 176, + "textBefore": null, + "textAfter": " Analytical methods", + "comments": null, + "startOffset": 0, + "endOffset": 28, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563172564Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7d144b5adfe7d74e3fe630f1f5e46917", + "type": "headline", + "value": "2.5.2.2 Residue analysis", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.5.2.2 Residue analysis", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 669.09796 + }, + "width": 33, + "height": -11.358002, + "page": 27 + }, + { + "topLeft": { + "x": 141.74, + "y": 669.09796 + }, + "width": 84.47398, + "height": -11.358002, + "page": 27 + } + ], + "sectionNumber": 232, + "textBefore": null, + "textAfter": " Relevant residue", + "comments": null, + "startOffset": 0, + "endOffset": 24, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563172874Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "55abb9527e6f6c366a26b989cd4fe254", + "type": "headline", + "value": "2.6 Effects on human and animal health", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6 Effects on human and animal health", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 209.17798 + }, + "width": 15, + "height": -11.357971, + "page": 31 + }, + { + "topLeft": { + "x": 141.74, + "y": 209.17798 + }, + "width": 185.49596, + "height": -11.357971, + "page": 31 + } + ], + "sectionNumber": 244, + "textBefore": null, + "textAfter": " The toxicological", + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563173194Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f44c47f295c0c61286d265c6966ddec3", + "type": "headline", + "value": "2.6.1 Summary of absorption, distribution, metabolism and excretion in mammals", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.1 Summary of absorption, distribution, metabolism and excretion in\nmammals", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 617.378 + }, + "width": 24, + "height": -11.358002, + "page": 33 + }, + { + "topLeft": { + "x": 141.74, + "y": 617.378 + }, + "width": 382.85608, + "height": -11.358002, + "page": 33 + }, + { + "topLeft": { + "x": 141.74, + "y": 603.57794 + }, + "width": 49.87201, + "height": -11.358002, + "page": 33 + } + ], + "sectionNumber": 245, + "textBefore": null, + "textAfter": " The oral", + "comments": null, + "startOffset": 0, + "endOffset": 78, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563173504Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "77dca93a44907099c3973703bb2e8017", + "type": "headline", + "value": "2.6.2 Summary of acute toxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.2 Summary of acute toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 24, + "height": -11.358002, + "page": 34 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 135.03001, + "height": -11.358002, + "page": 34 + } + ], + "sectionNumber": 275, + "textBefore": null, + "textAfter": " Results of", + "comments": null, + "startOffset": 0, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563173824Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "162fcce7d4d6c20f3c9313979ea2d8d5", + "type": "headline", + "value": "2.6.3 Summary of short-term toxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.3 Summary of short-term toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 276.04797 + }, + "width": 24, + "height": -11.357971, + "page": 36 + }, + { + "topLeft": { + "x": 141.74, + "y": 276.04797 + }, + "width": 162.85799, + "height": -11.357971, + "page": 36 + } + ], + "sectionNumber": 286, + "textBefore": null, + "textAfter": " Results of", + "comments": null, + "startOffset": 0, + "endOffset": 36, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563174144Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "aea0504a0bd8f64743f2df380be03c91", + "type": "headline", + "value": "2.6.4 Summary of genotoxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.4 Summary of genotoxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 618.818 + }, + "width": 24, + "height": -11.358002, + "page": 38 + }, + { + "topLeft": { + "x": 141.74, + "y": 618.818 + }, + "width": 128.64598, + "height": -11.358002, + "page": 38 + } + ], + "sectionNumber": 304, + "textBefore": null, + "textAfter": " Results of", + "comments": null, + "startOffset": 0, + "endOffset": 29, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563174483Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4f1e20e7df0401a1fd67a15a2b29f71b", + "type": "headline", + "value": "2.6.5 Summary of long-term toxicity and carcinogenicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.5 Summary of long-term toxicity and carcinogenicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 441.30798 + }, + "width": 24, + "height": -11.358002, + "page": 39 + }, + { + "topLeft": { + "x": 141.74, + "y": 441.30798 + }, + "width": 261.354, + "height": -11.358002, + "page": 39 + } + ], + "sectionNumber": 309, + "textBefore": null, + "textAfter": " Results of", + "comments": null, + "startOffset": 0, + "endOffset": 55, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563174823Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "32794d7be49a30122212a0def9fe30fa", + "type": "headline", + "value": "2.6.6 Summary of reproductive toxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.6 Summary of reproductive toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 593.498 + }, + "width": 24, + "height": -11.358002, + "page": 40 + }, + { + "topLeft": { + "x": 141.74, + "y": 593.498 + }, + "width": 172.98, + "height": -11.358002, + "page": 40 + } + ], + "sectionNumber": 317, + "textBefore": null, + "textAfter": " Results of", + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563175143Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "44ce29862628f5afff31dd729ffcca5c", + "type": "headline", + "value": "2.6.7 Summary of neurotoxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.7 Summary of neurotoxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 277.248 + }, + "width": 24, + "height": -11.357971, + "page": 41 + }, + { + "topLeft": { + "x": 141.74, + "y": 277.248 + }, + "width": 134.34001, + "height": -11.357971, + "page": 41 + } + ], + "sectionNumber": 318, + "textBefore": null, + "textAfter": " No specific", + "comments": null, + "startOffset": 0, + "endOffset": 30, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563175473Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "40c5d11ad9063c594e54c4c1a9d2cd5d", + "type": "headline", + "value": "2.6.8 Summary of further toxicological studies on the active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.8 Summary of further toxicological studies on the active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 151.578 + }, + "width": 24, + "height": -11.357971, + "page": 41 + }, + { + "topLeft": { + "x": 141.74, + "y": 151.578 + }, + "width": 329.59204, + "height": -11.357971, + "page": 41 + } + ], + "sectionNumber": 319, + "textBefore": null, + "textAfter": " Further mechanistic", + "comments": null, + "startOffset": 0, + "endOffset": 70, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563175803Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "be45ce618e305ca42a3539030a9b4cc5", + "type": "headline", + "value": "2.6.9 Summary of toxicological data on impurities and metabolites", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.9 Summary of toxicological data on impurities and metabolites", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 251.92798 + }, + "width": 24, + "height": -11.357971, + "page": 42 + }, + { + "topLeft": { + "x": 141.74, + "y": 251.92798 + }, + "width": 311.47205, + "height": -11.357971, + "page": 42 + } + ], + "sectionNumber": 354, + "textBefore": null, + "textAfter": " Summary of", + "comments": null, + "startOffset": 0, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563176113Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "40f1ec932a7004600631ddf5cf74624c", + "type": "headline", + "value": "2.6.11 Toxicological end point for assessment of risk following long-term dietary exposure - ADI", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.11 Toxicological end point for assessment of risk following long-term dietary\nexposure - ADI", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 467.82797 + }, + "width": 30, + "height": -11.358002, + "page": 46 + }, + { + "topLeft": { + "x": 141.74, + "y": 467.82797 + }, + "width": 382.83203, + "height": -11.358002, + "page": 46 + }, + { + "topLeft": { + "x": 141.74, + "y": 454.02798 + }, + "width": 77.058, + "height": -11.358002, + "page": 46 + } + ], + "sectionNumber": 356, + "textBefore": null, + "textAfter": " Original DAR", + "comments": null, + "startOffset": 0, + "endOffset": 96, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563176433Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ed3be3511c690dbdfac3fef0b8fd37c4", + "type": "headline", + "value": "2.6.10 Summary of medical data and information", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.10 Summary of medical data and information", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 669.45795 + }, + "width": 30, + "height": -11.358002, + "page": 46 + }, + { + "topLeft": { + "x": 141.74, + "y": 669.45795 + }, + "width": 218.73598, + "height": -11.358002, + "page": 46 + } + ], + "sectionNumber": 355, + "textBefore": null, + "textAfter": " According to", + "comments": null, + "startOffset": 0, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563176743Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "debcea539a3cc78c168d88cdd3e3d591", + "type": "headline", + "value": "2.6.13 Toxicological end point for assessment of occupational, bystander and residents risks – AOEL", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.13 Toxicological end point for assessment of occupational, bystander and\nresidents risks – AOEL", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 367.36798 + }, + "width": 30, + "height": -11.358002, + "page": 47 + }, + { + "topLeft": { + "x": 141.74, + "y": 367.36798 + }, + "width": 382.85602, + "height": -11.358002, + "page": 47 + }, + { + "topLeft": { + "x": 141.74, + "y": 353.56796 + }, + "width": 118.782, + "height": -11.358002, + "page": 47 + } + ], + "sectionNumber": 358, + "textBefore": null, + "textAfter": " Original DAR", + "comments": null, + "startOffset": 0, + "endOffset": 99, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563177053Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7d9ca9d22dbd67d2df797cdeccdc020a", + "type": "headline", + "value": "2.6.12 Toxicological end point for assessment of risk following acute dietary exposure - ARfD (acute reference dose)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.12 Toxicological end point for assessment of risk following acute dietary\nexposure - ARfD (acute reference dose)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 669.45795 + }, + "width": 30, + "height": -11.358002, + "page": 47 + }, + { + "topLeft": { + "x": 141.74, + "y": 669.45795 + }, + "width": 382.88806, + "height": -11.358002, + "page": 47 + }, + { + "topLeft": { + "x": 141.74, + "y": 655.65796 + }, + "width": 199.434, + "height": -11.358002, + "page": 47 + } + ], + "sectionNumber": 357, + "textBefore": null, + "textAfter": " Original DAR", + "comments": null, + "startOffset": 0, + "endOffset": 116, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563177373Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9a68943d96e5d303985a5f7bbfac95fc", + "type": "headline", + "value": "2.6.14 Summary of product exposure and risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.6.14 Summary of product exposure and risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 353.20798 + }, + "width": 30, + "height": -11.358002, + "page": 48 + }, + { + "topLeft": { + "x": 141.74, + "y": 353.20798 + }, + "width": 260.03998, + "height": -11.358002, + "page": 48 + } + ], + "sectionNumber": 359, + "textBefore": null, + "textAfter": " A9396G containing", + "comments": null, + "startOffset": 0, + "endOffset": 54, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563177683Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3cadc5a228f73701b1796fe667893e8f", + "type": "headline", + "value": "2.7.1 Summary of storage stability of residues", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.1 Summary of storage stability of residues", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 151.698 + }, + "width": 24, + "height": -11.357971, + "page": 48 + }, + { + "topLeft": { + "x": 141.74, + "y": 151.698 + }, + "width": 202.06801, + "height": -11.357971, + "page": 48 + } + ], + "sectionNumber": 361, + "textBefore": null, + "textAfter": " The storage", + "comments": null, + "startOffset": 0, + "endOffset": 46, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563178003Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "cf283e8ddd27945ee8ae3bafd7a0f698", + "type": "headline", + "value": "2.7 Residues", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7 Residues", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 189.49799 + }, + "width": 15, + "height": -11.357971, + "page": 48 + }, + { + "topLeft": { + "x": 141.74, + "y": 189.49799 + }, + "width": 45.37799, + "height": -11.357971, + "page": 48 + } + ], + "sectionNumber": 360, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563178333Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a30e75a63ff8ca7565e9d625104915a1", + "type": "headline", + "value": "2.7.2 Summary of metabolism, distribution and expression of residues in plants, poultry, lactating ruminants, pigs and fish", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 315.16797 + }, + "width": 24, + "height": -11.357971, + "page": 49 + }, + { + "topLeft": { + "x": 141.74, + "y": 315.16797 + }, + "width": 382.6681, + "height": -11.357971, + "page": 49 + }, + { + "topLeft": { + "x": 141.74, + "y": 301.36798 + }, + "width": 210.76808, + "height": -11.357971, + "page": 49 + } + ], + "sectionNumber": 410, + "textBefore": null, + "textAfter": " The metabolism", + "comments": null, + "startOffset": 0, + "endOffset": 123, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563178653Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "070803014a9d0185e15ab72e0b5ba639", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 259, + "y": 372 + }, + "width": 110, + "height": 93, + "page": 54 + } + ], + "sectionNumber": 410, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563178963Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "fd2c296a6e7ab65a6a812fc597f78ee7", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 259, + "y": 274 + }, + "width": 113, + "height": 92, + "page": 54 + } + ], + "sectionNumber": 410, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563179283Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "34c48aab77378b6c8d5b6afaf6a7725a", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 259, + "y": 558 + }, + "width": 111, + "height": 75, + "page": 54 + } + ], + "sectionNumber": 410, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563179603Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "54dbb789265108d00e10890877e46560", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 259, + "y": 111 + }, + "width": 190, + "height": 66, + "page": 54 + } + ], + "sectionNumber": 410, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563179923Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c2054808db8bfef960745183d572952f", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 259, + "y": 476 + }, + "width": 111, + "height": 76, + "page": 54 + } + ], + "sectionNumber": 410, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563180233Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e1721fb804bd084a9f5f3e68bcf5d60e", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 259, + "y": 183 + }, + "width": 113, + "height": 85, + "page": 54 + } + ], + "sectionNumber": 410, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563180553Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0e905ca043281182557a4078ddbda209", + "type": "headline", + "value": "2.7.2.1 Metabolism in plants", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.2.1 Metabolism in plants", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 435.42798 + }, + "width": 33, + "height": -11.358002, + "page": 55 + }, + { + "topLeft": { + "x": 141.74, + "y": 435.42798 + }, + "width": 108.08397, + "height": -11.358002, + "page": 55 + } + ], + "sectionNumber": 411, + "textBefore": null, + "textAfter": " The metabolism", + "comments": null, + "startOffset": 0, + "endOffset": 28, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563180873Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7f373a9c131dbe4c73b7840f20e6e65a", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 259, + "y": 628 + }, + "width": 181, + "height": 93, + "page": 55 + } + ], + "sectionNumber": 410, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563181183Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "cab046a2c7bae57aac53f429b97d8300", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 259, + "y": 464 + }, + "width": 113, + "height": 74, + "page": 55 + } + ], + "sectionNumber": 410, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563181513Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "24f08626a1830efaa31e7ff732c71c53", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.2 Summary of metabolism, distribution and expression of residues in plants,\npoultry, lactating ruminants, pigs and fish", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 259, + "y": 544 + }, + "width": 181, + "height": 78, + "page": 55 + } + ], + "sectionNumber": 410, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563181823Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "af1ac233706dcf1a8dd669645b1f8c7e", + "type": "headline", + "value": "2.7.2.3 Metabolism in lactating ruminants", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.2.3 Metabolism in lactating ruminants", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 378.64798 + }, + "width": 33, + "height": -11.358002, + "page": 59 + }, + { + "topLeft": { + "x": 141.74, + "y": 378.64798 + }, + "width": 177.54, + "height": -11.358002, + "page": 59 + } + ], + "sectionNumber": 413, + "textBefore": null, + "textAfter": " Although the", + "comments": null, + "startOffset": 0, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563182133Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3c6e9419b9d26bdcd5ce724522de5105", + "type": "headline", + "value": "2.7.2.2 Metabolism in poultry", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.2.2 Metabolism in poultry", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 757.298 + }, + "width": 33, + "height": -11.358002, + "page": 59 + }, + { + "topLeft": { + "x": 141.74, + "y": 757.298 + }, + "width": 114.67796, + "height": -11.358002, + "page": 59 + } + ], + "sectionNumber": 412, + "textBefore": null, + "textAfter": " Although the", + "comments": null, + "startOffset": 0, + "endOffset": 29, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563182443Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4fb843859d387894a8df5e54b5856e76", + "type": "headline", + "value": "2.7.2.5 Metabolism in fish", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.2.5 Metabolism in fish", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 556.388 + }, + "width": 33, + "height": -11.358002, + "page": 60 + }, + { + "topLeft": { + "x": 141.74, + "y": 556.388 + }, + "width": 95.387985, + "height": -11.358002, + "page": 60 + } + ], + "sectionNumber": 417, + "textBefore": null, + "textAfter": " No fish", + "comments": null, + "startOffset": 0, + "endOffset": 26, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563182753Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "44633db381bbc29dcf0a24d095f149e3", + "type": "headline", + "value": "2.7.2.4 Metabolism in pigs", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.2.4 Metabolism in pigs", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 669.45795 + }, + "width": 33, + "height": -11.358002, + "page": 60 + }, + { + "topLeft": { + "x": 141.74, + "y": 669.45795 + }, + "width": 97.35597, + "height": -11.358002, + "page": 60 + } + ], + "sectionNumber": 414, + "textBefore": null, + "textAfter": " No metabolism", + "comments": null, + "startOffset": 0, + "endOffset": 26, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563183063Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "212b0f3a054935951f1bacff068d0129", + "type": "headline", + "value": "2.7.3.1 Definition of the residue in plants", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.3.1 Definition of the residue in plants", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 731.498 + }, + "width": 33, + "height": -11.358002, + "page": 63 + }, + { + "topLeft": { + "x": 141.74, + "y": 731.498 + }, + "width": 171.04802, + "height": -11.358002, + "page": 63 + } + ], + "sectionNumber": 419, + "textBefore": null, + "textAfter": " Metabolism studies", + "comments": null, + "startOffset": 0, + "endOffset": 43, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563183473Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c62070b3a9c56b922be646dd5efa8ba2", + "type": "headline", + "value": "2.7.3 Definition of the residue", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.3 Definition of the residue", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 24, + "height": -11.358002, + "page": 63 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 121.03801, + "height": -11.358002, + "page": 63 + } + ], + "sectionNumber": 418, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563183783Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "19822b8cb1f24e7257588dc48747a32f", + "type": "headline", + "value": "2.7.3.2 Definition of the residue in animals", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.3.2 Definition of the residue in animals", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 176.05798 + }, + "width": 33, + "height": -11.357971, + "page": 65 + }, + { + "topLeft": { + "x": 141.74, + "y": 176.05798 + }, + "width": 179.58601, + "height": -11.357971, + "page": 65 + } + ], + "sectionNumber": 420, + "textBefore": null, + "textAfter": " The metabolism", + "comments": null, + "startOffset": 0, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563184183Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9c12c120b864929cf2c00f416e538712", + "type": "headline", + "value": "2.7.4 Summary of residue trials in plants and identification of critical GAP", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.4 Summary of residue trials in plants and identification of critical GAP", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 24, + "height": -11.358002, + "page": 67 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 347.67603, + "height": -11.358002, + "page": 67 + } + ], + "sectionNumber": 421, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 76, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563184493Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f6e737a97fcbd5c91b899055f9f7787c", + "type": "headline", + "value": "2.7.4.1 Sunflower seeds", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.4.1 Sunflower seeds", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 731.498 + }, + "width": 33, + "height": -11.358002, + "page": 67 + }, + { + "topLeft": { + "x": 141.74, + "y": 731.498 + }, + "width": 82.247986, + "height": -11.358002, + "page": 67 + } + ], + "sectionNumber": 434, + "textBefore": null, + "textAfter": " The representative", + "comments": null, + "startOffset": 0, + "endOffset": 23, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563184803Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5b555228eae937601ef09625d077a2b7", + "type": "headline", + "value": "2.7.4.2 Maize", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.4.2 Maize", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 719.97797 + }, + "width": 33, + "height": -11.358002, + "page": 68 + }, + { + "topLeft": { + "x": 141.74, + "y": 719.97797 + }, + "width": 31.272003, + "height": -11.358002, + "page": 68 + } + ], + "sectionNumber": 475, + "textBefore": null, + "textAfter": " The representative", + "comments": null, + "startOffset": 0, + "endOffset": 13, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563185113Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8baf7a9ee4b4c1e06e5ce83ecf4ea493", + "type": "headline", + "value": "2.7.5 Summary of feeding studies in poultry, ruminants, pigs and fish", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.5 Summary of feeding studies in poultry, ruminants, pigs and fish", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 419.70798 + }, + "width": 24, + "height": -11.358002, + "page": 69 + }, + { + "topLeft": { + "x": 141.74, + "y": 419.70798 + }, + "width": 319.47607, + "height": -11.358002, + "page": 69 + } + ], + "sectionNumber": 508, + "textBefore": null, + "textAfter": " S-metolachlor is", + "comments": null, + "startOffset": 0, + "endOffset": 69, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563185423Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b3930205158eb8399f03b1a96f280500", + "type": "headline", + "value": "2.7.5.2 Ruminant", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.5.2 Ruminant", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 129.85797 + }, + "width": 33, + "height": -11.357971, + "page": 70 + }, + { + "topLeft": { + "x": 141.74, + "y": 129.85797 + }, + "width": 51.971985, + "height": -11.357971, + "page": 70 + } + ], + "sectionNumber": 510, + "textBefore": null, + "textAfter": " Based on", + "comments": null, + "startOffset": 0, + "endOffset": 16, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563185743Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0a04c4f33404a3d3e3aea58f12fe11c4", + "type": "headline", + "value": "2.7.5.1 Poultry", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.5.1 Poultry", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 192.25793 + }, + "width": 33, + "height": -11.357971, + "page": 70 + }, + { + "topLeft": { + "x": 141.74, + "y": 192.25793 + }, + "width": 38.507996, + "height": -11.357971, + "page": 70 + } + ], + "sectionNumber": 509, + "textBefore": null, + "textAfter": " No feeding", + "comments": null, + "startOffset": 0, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563186063Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f185a6d20cbd590d248e784c13253212", + "type": "headline", + "value": "2.7.7 Summary of residues in rotational crops", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.7 Summary of residues in rotational crops", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 418.748 + }, + "width": 24, + "height": -11.358002, + "page": 71 + }, + { + "topLeft": { + "x": 141.74, + "y": 418.748 + }, + "width": 201.82805, + "height": -11.358002, + "page": 71 + } + ], + "sectionNumber": 514, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 45, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563186383Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "800e53a56bdcf2b2a4624f30cfd1cff7", + "type": "headline", + "value": "2.7.5.3 Pig", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.5.3 Pig", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 656.738 + }, + "width": 33, + "height": -11.358002, + "page": 71 + }, + { + "topLeft": { + "x": 141.74, + "y": 656.738 + }, + "width": 16.535995, + "height": -11.358002, + "page": 71 + } + ], + "sectionNumber": 511, + "textBefore": null, + "textAfter": " No feeding", + "comments": null, + "startOffset": 0, + "endOffset": 11, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563186753Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4f796debfa6e233c561eb7718eb73d8c", + "type": "headline", + "value": "2.7.6 Summary of effects of processing", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.6 Summary of effects of processing", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 531.90796 + }, + "width": 24, + "height": -11.358002, + "page": 71 + }, + { + "topLeft": { + "x": 141.74, + "y": 531.90796 + }, + "width": 165.84004, + "height": -11.358002, + "page": 71 + } + ], + "sectionNumber": 513, + "textBefore": null, + "textAfter": " No processing", + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563187073Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7c806e1c91083cdf339611eb62cc5984", + "type": "headline", + "value": "2.7.7.1 Metabolism in rotational crops", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.7.1 Metabolism in rotational crops", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 380.92798 + }, + "width": 33, + "height": -11.358002, + "page": 71 + }, + { + "topLeft": { + "x": 141.74, + "y": 380.92798 + }, + "width": 158.208, + "height": -11.358002, + "page": 71 + } + ], + "sectionNumber": 515, + "textBefore": null, + "textAfter": " The uptake", + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563187373Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "731b76e4d508a72fe54b07c6599bc622", + "type": "headline", + "value": "2.7.5.4 Fish", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.5.4 Fish", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 594.33795 + }, + "width": 33, + "height": -11.358002, + "page": 71 + }, + { + "topLeft": { + "x": 141.74, + "y": 594.33795 + }, + "width": 21.875992, + "height": -11.358002, + "page": 71 + } + ], + "sectionNumber": 512, + "textBefore": null, + "textAfter": " No feeding", + "comments": null, + "startOffset": 0, + "endOffset": 12, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563187693Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "89bcfdd4caa67f8d3200a183e17f84c2", + "type": "headline", + "value": "2.7.9 Estimation of the potential and actual exposure through diet and other sources", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 353.44797 + }, + "width": 24, + "height": -11.358002, + "page": 72 + }, + { + "topLeft": { + "x": 141.74, + "y": 353.44797 + }, + "width": 383.07812, + "height": -11.358002, + "page": 72 + }, + { + "topLeft": { + "x": 141.74, + "y": 339.64798 + }, + "width": 37.067993, + "height": -11.358002, + "page": 72 + } + ], + "sectionNumber": 551, + "textBefore": null, + "textAfter": " The toxicological", + "comments": null, + "startOffset": 0, + "endOffset": 84, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563188013Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "fe7ef8b87492606faa15212c094fe9c1", + "type": "headline", + "value": "2.7.8 Summary of other studies", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.8 Summary of other studies", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 466.50797 + }, + "width": 24, + "height": -11.358002, + "page": 72 + }, + { + "topLeft": { + "x": 141.74, + "y": 466.50797 + }, + "width": 129.708, + "height": -11.358002, + "page": 72 + } + ], + "sectionNumber": 517, + "textBefore": null, + "textAfter": " No other", + "comments": null, + "startOffset": 0, + "endOffset": 30, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563188323Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "1e847c9adcc74832c364552583051669", + "type": "headline", + "value": "2.7.7.2 Magnitude of residues in rotational crops", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.7.2 Magnitude of residues in rotational crops", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 33, + "height": -11.358002, + "page": 72 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 211.56001, + "height": -11.358002, + "page": 72 + } + ], + "sectionNumber": 516, + "textBefore": null, + "textAfter": " Two new", + "comments": null, + "startOffset": 0, + "endOffset": 49, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563188633Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "612cd83a0489b3e92208bed484bf0a7c", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 537, + "y": 437 + }, + "width": 170, + "height": 16, + "page": 74 + } + ], + "sectionNumber": 551, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563188943Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "54fdb0d777186666added246e0df2c40", + "type": "ocr", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.7.9 Estimation of the potential and actual exposure through diet and other\nsources", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 537, + "y": 462 + }, + "width": 170, + "height": 49, + "page": 74 + } + ], + "sectionNumber": 551, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563189263Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6ed8f74d1c7df9cf6f1ef5405aba07c6", + "type": "headline", + "value": "2.7.10 Proposed MRLs and compliance with existing MRLs", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.10 Proposed MRLs and compliance with existing MRLs", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 745.298 + }, + "width": 30, + "height": -11.358002, + "page": 76 + }, + { + "topLeft": { + "x": 141.74, + "y": 745.298 + }, + "width": 265.656, + "height": -11.358002, + "page": 76 + } + ], + "sectionNumber": 557, + "textBefore": null, + "textAfter": " EU MRLs", + "comments": null, + "startOffset": 0, + "endOffset": 54, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563189583Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5434eddd6385d5bc91dc86cfd53f821f", + "type": "headline", + "value": "2.8 Fate and behaviour in the environment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8 Fate and behaviour in the environment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 304.48798 + }, + "width": 15, + "height": -11.357971, + "page": 76 + }, + { + "topLeft": { + "x": 141.74, + "y": 304.48798 + }, + "width": 200.196, + "height": -11.357971, + "page": 76 + } + ], + "sectionNumber": 617, + "textBefore": null, + "textAfter": " Under environmental", + "comments": null, + "startOffset": 0, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563189903Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "32e50c8bab81d92226c0ffa9cce24101", + "type": "headline", + "value": "2.7.11 Proposed import tolerances and compliance with existing import tolerances", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.7.11 Proposed import tolerances and compliance with existing import tolerances", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 366.88797 + }, + "width": 30, + "height": -11.358002, + "page": 76 + }, + { + "topLeft": { + "x": 141.74, + "y": 366.88797 + }, + "width": 378.45605, + "height": -11.358002, + "page": 76 + } + ], + "sectionNumber": 558, + "textBefore": null, + "textAfter": " Not applicable.", + "comments": null, + "startOffset": 0, + "endOffset": 80, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563190233Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8b3487b08688941a85085fff2209e592", + "type": "headline", + "value": "2.8.1 Summary of fate and behaviour in soil", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.1 Summary of fate and behaviour in soil", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 372.88797 + }, + "width": 24, + "height": -11.358002, + "page": 87 + }, + { + "topLeft": { + "x": 141.74, + "y": 372.88797 + }, + "width": 196.416, + "height": -11.358002, + "page": 87 + } + ], + "sectionNumber": 869, + "textBefore": null, + "textAfter": " Appendix 1", + "comments": null, + "startOffset": 0, + "endOffset": 43, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563190553Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7c115101880924cabe5e83d0b7b48956", + "type": "headline", + "value": "2.8.1.1 Adsorption and desorption in soil", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.1.1 Adsorption and desorption in soil", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 381.76797 + }, + "width": 33, + "height": -11.358002, + "page": 102 + }, + { + "topLeft": { + "x": 141.74, + "y": 381.76797 + }, + "width": 171.34795, + "height": -11.358002, + "page": 102 + } + ], + "sectionNumber": 981, + "textBefore": null, + "textAfter": " Already during", + "comments": null, + "startOffset": 0, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563190893Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "bacecef5b3b4cfe05cc485fee56c2961", + "type": "headline", + "value": "2.8.1.2 Mobility in soil", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.1.2 Mobility in soil", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 659.378 + }, + "width": 33, + "height": -11.358002, + "page": 106 + }, + { + "topLeft": { + "x": 141.74, + "y": 659.378 + }, + "width": 77.44798, + "height": -11.358002, + "page": 106 + } + ], + "sectionNumber": 1044, + "textBefore": null, + "textAfter": " Column leaching", + "comments": null, + "startOffset": 0, + "endOffset": 24, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563191243Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9a400fc875e5ef5c37cd2d8f28cfbad4", + "type": "headline", + "value": "2.8.2 Summary of fate and behaviour in water and sediment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.2 Summary of fate and behaviour in water and sediment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 404.44797 + }, + "width": 24, + "height": -11.358002, + "page": 114 + }, + { + "topLeft": { + "x": 141.74, + "y": 404.44797 + }, + "width": 274.47607, + "height": -11.358002, + "page": 114 + } + ], + "sectionNumber": 1065, + "textBefore": null, + "textAfter": " Route and", + "comments": null, + "startOffset": 0, + "endOffset": 57, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563191573Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "94be1bcdfbfed7fb943549db5d1f57b2", + "type": "headline", + "value": "2.8.3 Summary of fate and behaviour in air", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.3 Summary of fate and behaviour in air", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 291.64795 + }, + "width": 24, + "height": -11.357971, + "page": 116 + }, + { + "topLeft": { + "x": 141.74, + "y": 291.64795 + }, + "width": 190.22404, + "height": -11.357971, + "page": 116 + } + ], + "sectionNumber": 1066, + "textBefore": null, + "textAfter": " S-metolachlor has", + "comments": null, + "startOffset": 0, + "endOffset": 42, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563191913Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "1384ffc50f68c59a7577882d8eb711b3", + "type": "headline", + "value": "2.8.4 Summary of monitoring data concerning fate and behaviour of the active substance, metabolites, degradation and reaction products", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.4 Summary of monitoring data concerning fate and behaviour of the active\nsubstance, metabolites, degradation and reaction products", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 694.77795 + }, + "width": 24, + "height": -11.358002, + "page": 117 + }, + { + "topLeft": { + "x": 141.74, + "y": 694.77795 + }, + "width": 382.5722, + "height": -11.358002, + "page": 117 + }, + { + "topLeft": { + "x": 141.74, + "y": 680.97797 + }, + "width": 292.1881, + "height": -11.358002, + "page": 117 + } + ], + "sectionNumber": 1067, + "textBefore": null, + "textAfter": " As highest", + "comments": null, + "startOffset": 0, + "endOffset": 134, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563192223Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "677e2ef415b66fb9c7b128a61b72bebc", + "type": "headline", + "value": "2.8.5 Definition of the residues in the environment requiring further assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.5 Definition of the residues in the environment requiring further assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 359.80798 + }, + "width": 24, + "height": -11.358002, + "page": 118 + }, + { + "topLeft": { + "x": 141.74, + "y": 359.80798 + }, + "width": 371.52008, + "height": -11.358002, + "page": 118 + } + ], + "sectionNumber": 1068, + "textBefore": null, + "textAfter": " Soil: CGA40172,", + "comments": null, + "startOffset": 0, + "endOffset": 80, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563192543Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0deab01d4f6c0fc33537f618b806d619", + "type": "headline", + "value": "2.8.6 Summary of exposure calculations and product assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.6 Summary of exposure calculations and product assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 24, + "height": -11.358002, + "page": 119 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 295.45203, + "height": -11.358002, + "page": 119 + } + ], + "sectionNumber": 1069, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563192973Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "51970df3b3ead9780d8c185e2f8f20a9", + "type": "headline", + "value": "2.8.6.1 PECsoil", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.6.1 PECsoil", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 731.498 + }, + "width": 33, + "height": -11.358002, + "page": 119 + }, + { + "topLeft": { + "x": 141.74, + "y": 731.498 + }, + "width": 35.61624, + "height": -11.838043, + "page": 119 + } + ], + "sectionNumber": 1123, + "textBefore": null, + "textAfter": " The PECsoil", + "comments": null, + "startOffset": 0, + "endOffset": 15, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563193403Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8b2c39d740ebf0430f8099469959e69d", + "type": "headline", + "value": "2.8.6.2 PECgroundwater", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.6.2 PECgroundwater", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 228.40796 + }, + "width": 33, + "height": -11.357971, + "page": 121 + }, + { + "topLeft": { + "x": 141.74, + "y": 228.40796 + }, + "width": 68.46768, + "height": -11.837952, + "page": 121 + } + ], + "sectionNumber": 1258, + "textBefore": null, + "textAfter": " The notifier", + "comments": null, + "startOffset": 0, + "endOffset": 22, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563193823Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9e61158743d7b50e62f502e874680482", + "type": "headline", + "value": "2.8.6.3 PECsurface water and PECsediment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.6.3 PECsurface water and PECsediment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 536.948 + }, + "width": 33, + "height": -11.358002, + "page": 126 + }, + { + "topLeft": { + "x": 141.74, + "y": 536.948 + }, + "width": 70.493774, + "height": -11.838043, + "page": 126 + }, + { + "topLeft": { + "x": 215.33, + "y": 536.948 + }, + "width": 76.824356, + "height": -11.838043, + "page": 126 + } + ], + "sectionNumber": 1285, + "textBefore": null, + "textAfter": " Predicted environmental", + "comments": null, + "startOffset": 0, + "endOffset": 40, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563194143Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6626c0eeb86da67ec686f059f1943cdb", + "type": "headline", + "value": "2.8.6.5 PEC from other routes of exposure", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.6.5 PEC from other routes of exposure", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 477.54797 + }, + "width": 33, + "height": -11.358002, + "page": 127 + }, + { + "topLeft": { + "x": 141.74, + "y": 477.54797 + }, + "width": 179.58, + "height": -11.358002, + "page": 127 + } + ], + "sectionNumber": 1287, + "textBefore": null, + "textAfter": " No other", + "comments": null, + "startOffset": 0, + "endOffset": 41, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563194473Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "253c1a7156f14a9ee1b27066dd57444c", + "type": "headline", + "value": "2.8.6.4 PECair", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.8.6.4 PECair", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 590.618 + }, + "width": 33, + "height": -11.358002, + "page": 127 + }, + { + "topLeft": { + "x": 141.74, + "y": 590.618 + }, + "width": 33.82332, + "height": -11.837982, + "page": 127 + } + ], + "sectionNumber": 1286, + "textBefore": null, + "textAfter": " S-metolachlor is", + "comments": null, + "startOffset": 0, + "endOffset": 14, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563194813Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "21fab5640f3c4adc60a9cd36418257e5", + "type": "headline", + "value": "2.9.1 Summary of effects on birds and other terrestrial vertebrates", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.1 Summary of effects on birds and other terrestrial vertebrates", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 364.60797 + }, + "width": 24, + "height": -11.358002, + "page": 127 + }, + { + "topLeft": { + "x": 141.74, + "y": 364.60797 + }, + "width": 312.552, + "height": -11.358002, + "page": 127 + } + ], + "sectionNumber": 1310, + "textBefore": null, + "textAfter": " Two new", + "comments": null, + "startOffset": 0, + "endOffset": 67, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563195203Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "ad2d9af3225d1db7d2b3d3d2b7a6d423", + "type": "headline", + "value": "2.9 Effects on non-target species", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9 Effects on non-target species", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 402.40796 + }, + "width": 15, + "height": -11.358002, + "page": 127 + }, + { + "topLeft": { + "x": 141.74, + "y": 402.40796 + }, + "width": 146.20201, + "height": -11.358002, + "page": 127 + } + ], + "sectionNumber": 1288, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 33, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563195523Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "362c096c2284c31a52f965d9906f96a1", + "type": "headline", + "value": "2.9.2 Summary of effects on aquatic organisms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.2 Summary of effects on aquatic organisms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 593.498 + }, + "width": 24, + "height": -11.358002, + "page": 130 + }, + { + "topLeft": { + "x": 141.74, + "y": 593.498 + }, + "width": 211.45204, + "height": -11.358002, + "page": 130 + } + ], + "sectionNumber": 1363, + "textBefore": null, + "textAfter": " Based on", + "comments": null, + "startOffset": 0, + "endOffset": 45, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563195863Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "e90e3bce3c0c6b0d4a90758cb27338c0", + "type": "headline", + "value": "2.9.3 Summary of effects on arthropods", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.3 Summary of effects on arthropods", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 322.00793 + }, + "width": 24, + "height": -11.357971, + "page": 133 + }, + { + "topLeft": { + "x": 141.74, + "y": 322.00793 + }, + "width": 175.06203, + "height": -11.357971, + "page": 133 + } + ], + "sectionNumber": 1382, + "textBefore": null, + "textAfter": " Honey bees", + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563196173Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "981012c7d164f63b78ea78729212bb6d", + "type": "headline", + "value": "2.9.4 Summary of effects on non-target soil meso- and macrofauna", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.4 Summary of effects on non-target soil meso- and macrofauna", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 526.02795 + }, + "width": 24, + "height": -11.358002, + "page": 135 + }, + { + "topLeft": { + "x": 141.74, + "y": 526.02795 + }, + "width": 312.44604, + "height": -11.358002, + "page": 135 + } + ], + "sectionNumber": 1383, + "textBefore": null, + "textAfter": " Studies regarding", + "comments": null, + "startOffset": 0, + "endOffset": 64, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563196483Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "aaec0717bb4315d7c337579b020359d9", + "type": "headline", + "value": "2.9.5 Summary of effects on earthworms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.5 Summary of effects on earthworms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 362.44797 + }, + "width": 24, + "height": -11.358002, + "page": 135 + }, + { + "topLeft": { + "x": 141.74, + "y": 362.44797 + }, + "width": 179.78404, + "height": -11.358002, + "page": 135 + } + ], + "sectionNumber": 1400, + "textBefore": null, + "textAfter": " The applicant", + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563196803Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6167e6efcfd104aec24d70373f529d7f", + "type": "headline", + "value": "2.9.6 Summary of effects on other non-target soil meso- and macrofauna", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.6 Summary of effects on other non-target soil meso- and macrofauna", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 674.858 + }, + "width": 24, + "height": -11.358002, + "page": 137 + }, + { + "topLeft": { + "x": 141.74, + "y": 674.858 + }, + "width": 342.60803, + "height": -11.358002, + "page": 137 + } + ], + "sectionNumber": 1422, + "textBefore": null, + "textAfter": " Table 2.9-7:", + "comments": null, + "startOffset": 0, + "endOffset": 70, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563197103Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "34270d0c3376f1ad531923b9a10216e6", + "type": "headline", + "value": "2.9.7 Summary of effects on soil nitrogen transformation", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.7 Summary of effects on soil nitrogen transformation", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 488.82797 + }, + "width": 24, + "height": -11.358002, + "page": 138 + }, + { + "topLeft": { + "x": 141.74, + "y": 488.82797 + }, + "width": 262.26007, + "height": -11.358002, + "page": 138 + } + ], + "sectionNumber": 1435, + "textBefore": null, + "textAfter": " Table 2.9-8:", + "comments": null, + "startOffset": 0, + "endOffset": 56, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563197423Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "611dc04d3f650c26b0a14db9f98e629d", + "type": "headline", + "value": "2.9.8 Summary of effects on terrestrial non-target higher plants", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.8 Summary of effects on terrestrial non-target higher plants", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 24, + "height": -11.358002, + "page": 139 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 297.13397, + "height": -11.358002, + "page": 139 + } + ], + "sectionNumber": 1446, + "textBefore": null, + "textAfter": " Table 2.9-9:", + "comments": null, + "startOffset": 0, + "endOffset": 64, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563197733Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d63e1461e774e394747033fbd61ce65b", + "type": "headline", + "value": "2.9.10 Summary of effects on biological methods for sewage treatment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.10 Summary of effects on biological methods for sewage treatment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 108.62195 + }, + "width": 30, + "height": -11.357971, + "page": 140 + }, + { + "topLeft": { + "x": 141.74, + "y": 108.62195 + }, + "width": 323.88007, + "height": -11.357971, + "page": 140 + } + ], + "sectionNumber": 1448, + "textBefore": null, + "textAfter": " No new", + "comments": null, + "startOffset": 0, + "endOffset": 68, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563198053Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "65576f4b63e78b6f968bb289cc3e78d9", + "type": "headline", + "value": "2.9.9 Summary of effects on other terrestrial organisms (flora and fauna)", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.9 Summary of effects on other terrestrial organisms (flora and fauna)", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 171.13794 + }, + "width": 24, + "height": -11.357971, + "page": 140 + }, + { + "topLeft": { + "x": 141.74, + "y": 171.13794 + }, + "width": 345.80408, + "height": -11.357971, + "page": 140 + } + ], + "sectionNumber": 1447, + "textBefore": null, + "textAfter": " Not relevant.", + "comments": null, + "startOffset": 0, + "endOffset": 73, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563198363Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3fbab2e5f5d973ed05ff9e7cda200c75", + "type": "headline", + "value": "2.9.11 Summary of product exposure and risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.11 Summary of product exposure and risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 656.738 + }, + "width": 30, + "height": -11.358002, + "page": 141 + }, + { + "topLeft": { + "x": 141.74, + "y": 656.738 + }, + "width": 260.03998, + "height": -11.358002, + "page": 141 + } + ], + "sectionNumber": 1530, + "textBefore": null, + "textAfter": " Birds Table", + "comments": null, + "startOffset": 0, + "endOffset": 54, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563198683Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5ba17fea08c6c097858ac35b2214dc70", + "type": "headline", + "value": "2.9.11.1 Summary of the risk assessment for aquatic organisms", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.11.1 Summary of the risk assessment for aquatic organisms", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 39, + "height": -11.358002, + "page": 148 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 279.71002, + "height": -11.358002, + "page": 148 + } + ], + "sectionNumber": 1650, + "textBefore": null, + "textAfter": " Risk assessment", + "comments": null, + "startOffset": 0, + "endOffset": 61, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563198993Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4f3563bd975361b1c6150cdde53fc5c5", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.9.11.1 Summary of the risk assessment for aquatic organisms", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 442, + "y": 308 + }, + "width": 57, + "height": 43, + "page": 154 + } + ], + "sectionNumber": 1650, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563199303Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f7453422046b8fbe49e0c566e3a04aba", + "type": "headline", + "value": "2.9.11.2 Summary of the risk assessment for non-target arthropods", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.11.2 Summary of the risk assessment for non-target arthropods", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 39, + "height": -11.358002, + "page": 155 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 300.404, + "height": -11.358002, + "page": 155 + } + ], + "sectionNumber": 1675, + "textBefore": null, + "textAfter": " Procedures for", + "comments": null, + "startOffset": 0, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563199803Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "b1523cf0176042207b2b9a8bdddc6dee", + "type": "headline", + "value": "2.9.11.3 Summary of the risk assessment for non-target soil meso- and macrofauna", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.11.3 Summary of the risk assessment for non-target soil meso- and macrofauna", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 615.33795 + }, + "width": 39, + "height": -11.358002, + "page": 157 + }, + { + "topLeft": { + "x": 141.74, + "y": 615.33795 + }, + "width": 380.75604, + "height": -11.358002, + "page": 157 + } + ], + "sectionNumber": 1800, + "textBefore": null, + "textAfter": " Summary of", + "comments": null, + "startOffset": 0, + "endOffset": 80, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563200123Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "83c54c76fae2e0cf4b184f667b94e02d", + "type": "headline", + "value": "2.9.11.4 Summary of the risk assessment for soil nitrogen transformation", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.11.4 Summary of the risk assessment for soil nitrogen transformation", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 234.76794 + }, + "width": 39, + "height": -11.357971, + "page": 161 + }, + { + "topLeft": { + "x": 141.74, + "y": 234.76794 + }, + "width": 330.528, + "height": -11.357971, + "page": 161 + } + ], + "sectionNumber": 1815, + "textBefore": null, + "textAfter": " Table 2.9-27:", + "comments": null, + "startOffset": 0, + "endOffset": 72, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563200423Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d34a7a742be7146773d5644c0a77c236", + "type": "headline", + "value": "2.9.11.5 Summary of the risk assessment for non-target terrestrial plants", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.9.11.5 Summary of the risk assessment for non-target terrestrial plants", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 465.42798 + }, + "width": 39, + "height": -11.358002, + "page": 162 + }, + { + "topLeft": { + "x": 141.74, + "y": 465.42798 + }, + "width": 329.294, + "height": -11.358002, + "page": 162 + } + ], + "sectionNumber": 1903, + "textBefore": null, + "textAfter": " Seedling emergence", + "comments": null, + "startOffset": 0, + "endOffset": 73, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563200753Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "2e84740933ae6d5156dc5145c5a0d142", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.9.11.5 Summary of the risk assessment for non-target terrestrial plants", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 71, + "y": 318 + }, + "width": 453, + "height": 453, + "page": 165 + } + ], + "sectionNumber": 1903, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563201073Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5d8ad2646713f6c4f497a7a6a4189a66", + "type": "headline", + "value": "2.10 Classification and labelling", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.10 Classification and labelling", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 21, + "height": -11.358002, + "page": 167 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 138.63597, + "height": -11.358002, + "page": 167 + } + ], + "sectionNumber": 1939, + "textBefore": null, + "textAfter": " Table 2.10-1:", + "comments": null, + "startOffset": 0, + "endOffset": 33, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563201383Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "3ec099478e08c1a3d39d913ee3fe760a", + "type": "headline", + "value": "A9396G", + "reason": "Headline found, removed by manual override", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": false, + "section": "A9396G", + "color": [ + 0.6666667, + 0.6666667, + 0.6666667 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 204.04321 + }, + "width": 36.796303, + "height": -11.023193, + "page": 168 + } + ], + "sectionNumber": 1958, + "textBefore": null, + "textAfter": " According to", + "comments": null, + "startOffset": 0, + "endOffset": 6, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563201713Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "REMOVE_LOCALLY", + "processedDate": "2022-10-10T12:08:24.320061Z", + "requestedDate": "2022-10-10T12:08:24.297899Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": true, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d41985615b698122933103b7b735ed83", + "type": "headline", + "value": "2.11.1 STEP 1: Exclusion of degradation products of no concern", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.1 STEP 1: Exclusion of degradation products of no concern", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 731.498 + }, + "width": 30, + "height": -11.358002, + "page": 170 + }, + { + "topLeft": { + "x": 141.74, + "y": 731.498 + }, + "width": 293.54407, + "height": -11.358002, + "page": 170 + } + ], + "sectionNumber": 1986, + "textBefore": null, + "textAfter": " Residues of", + "comments": null, + "startOffset": 0, + "endOffset": 62, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563202103Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "fdd9814b878f3709c03c9c1722ad5a50", + "type": "headline", + "value": "2.11 Relevance of metabolites in groundwater", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11 Relevance of metabolites in groundwater", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 21, + "height": -11.358002, + "page": 170 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 209.21999, + "height": -11.358002, + "page": 170 + } + ], + "sectionNumber": 1959, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563202413Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "39e58b3f566bace9e3fc750ae39466c8", + "type": "headline", + "value": "2.11.2 STEP 2: Quantification of potential groundwater contamination", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.2 STEP 2: Quantification of potential groundwater contamination", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 519.068 + }, + "width": 30, + "height": -11.358002, + "page": 173 + }, + { + "topLeft": { + "x": 141.74, + "y": 519.068 + }, + "width": 327.26404, + "height": -11.358002, + "page": 173 + } + ], + "sectionNumber": 2014, + "textBefore": null, + "textAfter": " The results", + "comments": null, + "startOffset": 0, + "endOffset": 68, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563202723Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "a7df378f69a2149383cb7ce42fb68321", + "type": "headline", + "value": "2.11.3 STEP 3: Hazard assessment - identification of relevant metabolites", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.3 STEP 3: Hazard assessment - identification of relevant metabolites", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 30, + "height": -11.358002, + "page": 175 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 340.274, + "height": -11.358002, + "page": 175 + } + ], + "sectionNumber": 2040, + "textBefore": null, + "textAfter": " In accordance", + "comments": null, + "startOffset": 0, + "endOffset": 73, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563203033Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0041c21c1f9c572d6d7a11ade94c8801", + "type": "headline", + "value": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.3.1 STEP 3, Stage 1: Screening for biological activity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 552.78796 + }, + "width": 39, + "height": -11.358002, + "page": 176 + }, + { + "topLeft": { + "x": 141.74, + "y": 552.78796 + }, + "width": 251.23802, + "height": -11.358002, + "page": 176 + } + ], + "sectionNumber": 2062, + "textBefore": null, + "textAfter": " For the", + "comments": null, + "startOffset": 0, + "endOffset": 59, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563203343Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "7f0d27dfaaef865f0297f70dfa183142", + "type": "headline", + "value": "2.11.3.2 STEP 3, Stage 2: Screening for genotoxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.3.2 STEP 3, Stage 2: Screening for genotoxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 180.61798 + }, + "width": 39, + "height": -11.357971, + "page": 178 + }, + { + "topLeft": { + "x": 141.74, + "y": 180.61798 + }, + "width": 222.93001, + "height": -11.357971, + "page": 178 + } + ], + "sectionNumber": 2063, + "textBefore": null, + "textAfter": " According to", + "comments": null, + "startOffset": 0, + "endOffset": 52, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563203643Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "81f22a6369b5521c0a07ab3fc5cae27a", + "type": "headline", + "value": "2.11.3.3 STEP 3, Stage 3: Screening for toxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.3.3 STEP 3, Stage 3: Screening for toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 492.30798 + }, + "width": 39, + "height": -11.358002, + "page": 179 + }, + { + "topLeft": { + "x": 141.74, + "y": 492.30798 + }, + "width": 198.942, + "height": -11.358002, + "page": 179 + } + ], + "sectionNumber": 2064, + "textBefore": null, + "textAfter": " Currently, the", + "comments": null, + "startOffset": 0, + "endOffset": 48, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563203963Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f1b4bf1444120abf7654065d0b0a9308", + "type": "headline", + "value": "2.11.4 STEP 4: Exposure assessment – threshold of concern approach", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.4 STEP 4: Exposure assessment – threshold of concern approach", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 252.76794 + }, + "width": 30, + "height": -11.357971, + "page": 179 + }, + { + "topLeft": { + "x": 141.74, + "y": 252.76794 + }, + "width": 321.278, + "height": -11.357971, + "page": 179 + } + ], + "sectionNumber": 2065, + "textBefore": null, + "textAfter": " Based on", + "comments": null, + "startOffset": 0, + "endOffset": 66, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563204263Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "97031e10e22462a22fc8b582f18be066", + "type": "headline", + "value": "2.11.5 STEP 5: Refined risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.5 STEP 5: Refined risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 30, + "height": -11.358002, + "page": 180 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 167.286, + "height": -11.358002, + "page": 180 + } + ], + "sectionNumber": 2142, + "textBefore": null, + "textAfter": " In case", + "comments": null, + "startOffset": 0, + "endOffset": 38, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563204573Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "80ba317ee483de5fb4b2fdd43f4e37f0", + "type": "headline", + "value": "2.12.1 Identity and physical chemical properties", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.1 Identity and physical chemical properties", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 305.568 + }, + "width": 30, + "height": -11.357971, + "page": 183 + }, + { + "topLeft": { + "x": 141.74, + "y": 305.568 + }, + "width": 211.65001, + "height": -11.357971, + "page": 183 + } + ], + "sectionNumber": 2149, + "textBefore": null, + "textAfter": " S-Metolachlor is", + "comments": null, + "startOffset": 0, + "endOffset": 48, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563204883Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "cb02f4183de3509e6d173f3c5b52824a", + "type": "headline", + "value": "2.11.6 Overall conclusion", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.11.6 Overall conclusion", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 672.33795 + }, + "width": 30, + "height": -11.358002, + "page": 183 + }, + { + "topLeft": { + "x": 141.74, + "y": 672.33795 + }, + "width": 95.693985, + "height": -11.358002, + "page": 183 + } + ], + "sectionNumber": 2143, + "textBefore": null, + "textAfter": " Currently, the", + "comments": null, + "startOffset": 0, + "endOffset": 25, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563205223Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8f166ece9ca6fef64e03eca64f9f4d87", + "type": "headline", + "value": "2.12 Consideration of isomeric composition in the risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12 Consideration of isomeric composition in the risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 343.36798 + }, + "width": 21, + "height": -11.357971, + "page": 183 + }, + { + "topLeft": { + "x": 141.74, + "y": 343.36798 + }, + "width": 310.716, + "height": -11.357971, + "page": 183 + } + ], + "sectionNumber": 2144, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 65, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563205553Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0a41f8e9ba051aef7391ec7800efb868", + "type": "headline", + "value": "2.12.3 Mammalian toxicity", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.3 Mammalian toxicity", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 371.92798 + }, + "width": 30, + "height": -11.358002, + "page": 184 + }, + { + "topLeft": { + "x": 141.74, + "y": 371.92798 + }, + "width": 103.535995, + "height": -11.358002, + "page": 184 + } + ], + "sectionNumber": 2151, + "textBefore": null, + "textAfter": " Applicant’s statement", + "comments": null, + "startOffset": 0, + "endOffset": 25, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563205873Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "1f235fcc7a3955ce00e6b896d1f6b744", + "type": "headline", + "value": "2.12.2 Methods of analysis", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.2 Methods of analysis", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 447.06796 + }, + "width": 30, + "height": -11.358002, + "page": 184 + }, + { + "topLeft": { + "x": 141.74, + "y": 447.06796 + }, + "width": 101.45999, + "height": -11.358002, + "page": 184 + } + ], + "sectionNumber": 2150, + "textBefore": null, + "textAfter": " Validated chiral", + "comments": null, + "startOffset": 0, + "endOffset": 26, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563206183Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "5981c92025cede48ffe581be65a22509", + "type": "headline", + "value": "2.12.5 Residues and consumer risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.5 Residues and consumer risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 173.29797 + }, + "width": 30, + "height": -11.357971, + "page": 185 + }, + { + "topLeft": { + "x": 141.74, + "y": 173.29797 + }, + "width": 202.33797, + "height": -11.357971, + "page": 185 + } + ], + "sectionNumber": 2153, + "textBefore": null, + "textAfter": " S-metolachlor is", + "comments": null, + "startOffset": 0, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563206543Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c227eb9f2550c26ddb8c4f2aea05771a", + "type": "headline", + "value": "2.12.4 Operator, worker, bystander and resident exposure", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.4 Operator, worker, bystander and resident exposure", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 273.76794 + }, + "width": 30, + "height": -11.357971, + "page": 185 + }, + { + "topLeft": { + "x": 141.74, + "y": 273.76794 + }, + "width": 261.40997, + "height": -11.357971, + "page": 185 + } + ], + "sectionNumber": 2152, + "textBefore": null, + "textAfter": " Metolachlor and", + "comments": null, + "startOffset": 0, + "endOffset": 56, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563206863Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9fa6920641a0ec9db3370ec5d9f4bae8", + "type": "image", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.12.3 Mammalian toxicity", + "color": [ + 0.7411765, + 0.8392157, + 1 + ], + "positions": [ + { + "topLeft": { + "x": 93, + "y": 374 + }, + "width": 409, + "height": 121, + "page": 185 + } + ], + "sectionNumber": 2151, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563207183Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "d5131736c77fde500c224107d0eb7390", + "type": "formula", + "value": null, + "reason": null, + "matchedRule": 0, + "rectangle": false, + "legalBasis": null, + "imported": false, + "redacted": false, + "section": "2.12.3 Mammalian toxicity", + "color": [ + 0.011764706, + 0.43529412, + 0.9882353 + ], + "positions": [ + { + "topLeft": { + "x": 158, + "y": 538 + }, + "width": 279, + "height": 233, + "page": 185 + } + ], + "sectionNumber": 2151, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563207493Z" + } + ], + "manualChanges": [], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": true, + "recommendation": false, + "falsePositive": false, + "image": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9a29eb1aedb61420dbb835defc5e5407", + "type": "headline", + "value": "2.13.1 Definition of residues for exposure/risk assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.13.1 Definition of residues for exposure/risk assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 380.20798 + }, + "width": 30, + "height": -11.358002, + "page": 186 + }, + { + "topLeft": { + "x": 141.74, + "y": 380.20798 + }, + "width": 258.25208, + "height": -11.358002, + "page": 186 + } + ], + "sectionNumber": 2157, + "textBefore": null, + "textAfter": " Food of", + "comments": null, + "startOffset": 0, + "endOffset": 58, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563207813Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "2f0c2eab1eea7384ef857e5a5160a370", + "type": "headline", + "value": "2.12.7 Ecotoxicology", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.7 Ecotoxicology", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 568.988 + }, + "width": 30, + "height": -11.358002, + "page": 186 + }, + { + "topLeft": { + "x": 141.74, + "y": 568.988 + }, + "width": 71.244, + "height": -11.358002, + "page": 186 + } + ], + "sectionNumber": 2155, + "textBefore": null, + "textAfter": " Metolachlor is", + "comments": null, + "startOffset": 0, + "endOffset": 20, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563208123Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "15c18f41673efe1eec3a2a19c9662cfc", + "type": "headline", + "value": "2.13 Residue definitions", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.13 Residue definitions", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 418.02798 + }, + "width": 21, + "height": -11.358002, + "page": 186 + }, + { + "topLeft": { + "x": 141.74, + "y": 418.02798 + }, + "width": 97.72798, + "height": -11.358002, + "page": 186 + } + ], + "sectionNumber": 2156, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 24, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563208443Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4b5c453f832ab04e4b22d7ff693475bc", + "type": "headline", + "value": "2.12.6 Environmental fate", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.12.6 Environmental fate", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 682.058 + }, + "width": 30, + "height": -11.358002, + "page": 186 + }, + { + "topLeft": { + "x": 141.74, + "y": 682.058 + }, + "width": 99.38397, + "height": -11.358002, + "page": 186 + } + ], + "sectionNumber": 2154, + "textBefore": null, + "textAfter": " For the", + "comments": null, + "startOffset": 0, + "endOffset": 25, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563208753Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "0295c503e3334dac2cde73fe9a842444", + "type": "headline", + "value": "2.13.2 Definition of residues for monitoring", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "2.13.2 Definition of residues for monitoring", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 30, + "height": -11.358002, + "page": 187 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 187.44005, + "height": -11.358002, + "page": 187 + } + ], + "sectionNumber": 2160, + "textBefore": null, + "textAfter": " Food of", + "comments": null, + "startOffset": 0, + "endOffset": 44, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563209063Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "265eb3cd7850b4c2d3e8b449b11aec6e", + "type": "headline", + "value": "3.1.1 Proposal on acceptability against the decision making criteria – Article 4 and annex II of regulation (EC) No 1107/2009", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.1 Proposal on acceptability against the decision making criteria – Article 4 and annex II of regulation (EC) No 1107/2009", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 420.78796 + }, + "width": 24, + "height": -11.358002, + "page": 189 + }, + { + "topLeft": { + "x": 141.74, + "y": 420.78796 + }, + "width": 606.29004, + "height": -11.358002, + "page": 189 + } + ], + "sectionNumber": 2266, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 125, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563209403Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "841a620ba203b976d682c63176cb53ef", + "type": "headline", + "value": "3 Proposed decision with respect to the application", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3 Proposed decision with respect to the application", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 497.68887 + }, + "width": 7.0199966, + "height": -12.26886, + "page": 189 + }, + { + "topLeft": { + "x": 141.74, + "y": 497.68887 + }, + "width": 291.61176, + "height": -12.26886, + "page": 189 + } + ], + "sectionNumber": 2161, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 51, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563209713Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "11f1d2c57cfde5b61c5886179c5e225a", + "type": "headline", + "value": "3.1 Background to the proposed decision", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1 Background to the proposed decision", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 458.61798 + }, + "width": 15, + "height": -11.358002, + "page": 189 + }, + { + "topLeft": { + "x": 141.74, + "y": 458.61798 + }, + "width": 190.01997, + "height": -11.358002, + "page": 189 + } + ], + "sectionNumber": 2162, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 39, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563210063Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "20275ba329daea4fb4f90174119ef462", + "type": "headline", + "value": "3.1.2 Proposal – Candidate for substitution", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.2 Proposal – Candidate for substitution", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 522.698 + }, + "width": 24, + "height": -11.358002, + "page": 205 + }, + { + "topLeft": { + "x": 141.74, + "y": 522.698 + }, + "width": 192.26399, + "height": -11.358002, + "page": 205 + } + ], + "sectionNumber": 2271, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 43, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563210373Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c09611174f28ad5adfc3f0d1fe47a48e", + "type": "headline", + "value": "3.1.3 Proposal – Low risk active substance", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.3 Proposal – Low risk active substance", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 241.84796 + }, + "width": 24, + "height": -11.358002, + "page": 205 + }, + { + "topLeft": { + "x": 141.74, + "y": 241.84796 + }, + "width": 188.78398, + "height": -11.358002, + "page": 205 + } + ], + "sectionNumber": 2278, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 42, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563210683Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "087222e0c5ecb423bae2cf61256d02e8", + "type": "headline", + "value": "3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.4 List of studies to be generated, still ongoing or available but not peer reviewed", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.92, + "y": 383.82797 + }, + "width": 24, + "height": -11.358002, + "page": 206 + }, + { + "topLeft": { + "x": 141.74, + "y": 383.82797 + }, + "width": 398.4721, + "height": -11.358002, + "page": 206 + } + ], + "sectionNumber": 2328, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 87, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563211003Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "c2501e9fbf417b1910d981cad29d66ec", + "type": "headline", + "value": "3.1.5 Issues that could not be finalised", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.5 Issues that could not be finalised", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 745.298 + }, + "width": 24, + "height": -11.358002, + "page": 212 + }, + { + "topLeft": { + "x": 141.74, + "y": 745.298 + }, + "width": 166.442, + "height": -11.358002, + "page": 212 + } + ], + "sectionNumber": 2336, + "textBefore": null, + "textAfter": " An issue", + "comments": null, + "startOffset": 0, + "endOffset": 40, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563211323Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "9653cefd45fd33427d690962157f1132", + "type": "headline", + "value": "3.1.6 Critical areas of concern", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.6 Critical areas of concern", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 306.16797 + }, + "width": 24, + "height": -11.357971, + "page": 212 + }, + { + "topLeft": { + "x": 141.74, + "y": 306.16797 + }, + "width": 126.07799, + "height": -11.357971, + "page": 212 + } + ], + "sectionNumber": 2345, + "textBefore": null, + "textAfter": " An issue", + "comments": null, + "startOffset": 0, + "endOffset": 31, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563211633Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "4bded3cb277df8f0caa656bc304c950b", + "type": "headline", + "value": "3.1.7 Overview table of the concerns identified for each representative use considered", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.7 Overview table of the concerns identified for each representative use\nconsidered", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 210.61798 + }, + "width": 24, + "height": -11.357971, + "page": 213 + }, + { + "topLeft": { + "x": 141.74, + "y": 210.61798 + }, + "width": 382.80408, + "height": -11.357971, + "page": 213 + }, + { + "topLeft": { + "x": 141.74, + "y": 196.818 + }, + "width": 55.007996, + "height": -11.357971, + "page": 213 + } + ], + "sectionNumber": 2369, + "textBefore": null, + "textAfter": " (If a", + "comments": null, + "startOffset": 0, + "endOffset": 86, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563211963Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6043426e215a7cd9736b120d134c0203", + "type": "headline", + "value": "3.1.8 Area(s) where expert consultation is considered necessary", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.8 Area(s) where expert consultation is considered necessary", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 134.29797 + }, + "width": 24, + "height": -11.357971, + "page": 214 + }, + { + "topLeft": { + "x": 141.74, + "y": 134.29797 + }, + "width": 294.36, + "height": -11.357971, + "page": 214 + } + ], + "sectionNumber": 2376, + "textBefore": null, + "textAfter": " It is", + "comments": null, + "startOffset": 0, + "endOffset": 63, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563212273Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "726f56586e4b1a40f1abd5f5eec467b1", + "type": "headline", + "value": "3.1.9 Critical issues on which the Co RMS did not agree with the assessment by the RMS", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.1.9 Critical issues on which the Co RMS did not agree with the assessment by\nthe RMS", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 324.28796 + }, + "width": 24, + "height": -11.357971, + "page": 215 + }, + { + "topLeft": { + "x": 141.74, + "y": 324.28796 + }, + "width": 382.42194, + "height": -11.357971, + "page": 215 + }, + { + "topLeft": { + "x": 141.74, + "y": 310.48798 + }, + "width": 45.552002, + "height": -11.357971, + "page": 215 + } + ], + "sectionNumber": 2381, + "textBefore": null, + "textAfter": " Points on", + "comments": null, + "startOffset": 0, + "endOffset": 86, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563212603Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "86c01122d9f68c9038f90842729c5fcc", + "type": "headline", + "value": "3.2 Proposed decision", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.2 Proposed decision", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 15, + "height": -11.358002, + "page": 216 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 92.183975, + "height": -11.358002, + "page": 216 + } + ], + "sectionNumber": 2382, + "textBefore": null, + "textAfter": " It is", + "comments": null, + "startOffset": 0, + "endOffset": 21, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563212993Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "868ff7723d3760b43b074132bf6f68b0", + "type": "headline", + "value": "3.3.1 Particular conditions proposed to be taken into account to manage the risk identified", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.3.1 Particular conditions proposed to be taken into account to manage the risk\nidentified", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 717.698 + }, + "width": 24, + "height": -11.358002, + "page": 217 + }, + { + "topLeft": { + "x": 141.74, + "y": 717.698 + }, + "width": 382.53802, + "height": -11.358002, + "page": 217 + }, + { + "topLeft": { + "x": 141.74, + "y": 703.89795 + }, + "width": 48.779984, + "height": -11.358002, + "page": 217 + } + ], + "sectionNumber": 2387, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 91, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563213332Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "75687a1e1cca8a300401ca932f27a3ce", + "type": "headline", + "value": "3.3 Rational for the conditions and restrictions to be associated with the approval or authorisation(s), as appropriate", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.3 Rational for the conditions and restrictions to be associated with the approval or authorisation(s), as appropriate", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 769.318 + }, + "width": 15, + "height": -11.358002, + "page": 217 + }, + { + "topLeft": { + "x": 141.74, + "y": 769.318 + }, + "width": 382.81598, + "height": -11.358002, + "page": 217 + }, + { + "topLeft": { + "x": 141.74, + "y": 755.498 + }, + "width": 213.00002, + "height": -11.358002, + "page": 217 + } + ], + "sectionNumber": 2383, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 119, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563213652Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "38ffc7f82578eac69f3be152de2e7976", + "type": "headline", + "value": "3.4 Appendices", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.4 Appendices", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 745.298 + }, + "width": 15, + "height": -11.358002, + "page": 218 + }, + { + "topLeft": { + "x": 141.74, + "y": 745.298 + }, + "width": 59.351974, + "height": -11.358002, + "page": 218 + } + ], + "sectionNumber": 2388, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 14, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563213982Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f63c688eaec21258ee12af7bc9d74eb3", + "type": "headline", + "value": "3.4.1 Guidance documents used in this assessment", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.4.1 Guidance documents used in this assessment", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 70.944, + "y": 707.498 + }, + "width": 24, + "height": -11.358002, + "page": 218 + }, + { + "topLeft": { + "x": 141.74, + "y": 707.498 + }, + "width": 227.54396, + "height": -11.358002, + "page": 218 + } + ], + "sectionNumber": 2389, + "textBefore": null, + "textAfter": " [List of", + "comments": null, + "startOffset": 0, + "endOffset": 48, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563214282Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "f07933aff85a833efe551b8982b6c68d", + "type": "headline", + "value": "3.4.2 Reference list", + "reason": "Headline found", + "matchedRule": 1, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": "3.4.2 Reference list", + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 56.64, + "y": 498.69797 + }, + "width": 24, + "height": -11.358002, + "page": 221 + }, + { + "topLeft": { + "x": 127.46, + "y": 498.69797 + }, + "width": 69.33599, + "height": -11.358002, + "page": 221 + } + ], + "sectionNumber": 2396, + "textBefore": null, + "textAfter": " List [in", + "comments": null, + "startOffset": 0, + "endOffset": 20, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2022-10-10T11:39:29.563214622Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "localManualRedaction": false, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "22f1459e4accc52632b539aee0ec4ee1", + "type": "manual", + "value": "Version history", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 244.97, + "y": 746.73865 + }, + "width": 105.19412, + "height": 14.251781, + "page": 2 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T12:03:35.346Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T12:03:35.346Z", + "requestedDate": "2022-10-10T12:03:35.346Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "8966dc2ae00a975a1063dbfb901589be", + "type": "manual", + "value": "Level 2", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 242.21, + "y": 477.0675 + }, + "width": 110.88, + "height": 32.146873, + "page": 18 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T12:05:17.621Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T12:05:17.621Z", + "requestedDate": "2022-10-10T12:05:17.621Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "6c7dbb0c7a67731f44083144cfb6dac5", + "type": "manual", + "value": "Table of contents", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 238.97, + "y": 746.73865 + }, + "width": 117.20228, + "height": 14.251781, + "page": 3 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T12:03:56.399Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T12:03:56.399Z", + "requestedDate": "2022-10-10T12:03:56.399Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "67e62b590ec8974153609cfe4ca023bf", + "type": "manual", + "value": "Level 3", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 242.21, + "y": 477.0675 + }, + "width": 110.88, + "height": 32.146873, + "page": 188 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T12:08:58.144Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T12:08:58.144Z", + "requestedDate": "2022-10-10T12:08:58.144Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + }, + { + "id": "2adea2c13458b3de03a5122918ff7c7c", + "type": "manual", + "value": "Level 1", + "reason": "n-a.", + "matchedRule": 0, + "rectangle": false, + "legalBasis": "n-a.", + "imported": false, + "redacted": true, + "section": null, + "color": [ + 0.9764706, + 0.02745098, + 0.02745098 + ], + "positions": [ + { + "topLeft": { + "x": 242.21, + "y": 477.0675 + }, + "width": 110.88, + "height": 32.146873, + "page": 8 + } + ], + "sectionNumber": -1, + "textBefore": null, + "textAfter": null, + "comments": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "excluded": false, + "sourceId": null, + "changes": [ + { + "analysisNumber": 2, + "type": "ADDED", + "dateTime": "2022-10-10T12:04:49.47Z" + } + ], + "manualChanges": [ + { + "annotationStatus": "APPROVED", + "manualRedactionType": "ADD_LOCALLY", + "processedDate": "2022-10-10T12:04:49.47Z", + "requestedDate": "2022-10-10T12:04:49.47Z", + "userId": "023ecc8b-856f-4dfb-b32c-1afdc701a783", + "propertyChanges": {}, + "processed": true + } + ], + "engines": null, + "reference": null, + "importedRedactionIntersections": [], + "localManualRedaction": true, + "manuallyRemoved": false, + "hint": false, + "recommendation": false, + "falsePositive": false, + "image": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false + } + ], + "legalBasis": [ + { + "name": "n-a.", + "description": "n-a.", + "reason": "n-a." + } + ], + "dictionaryVersion": 13, + "dossierDictionaryVersion": 1, + "rulesVersion": 3, + "legalBasisVersion": 2 +} \ No newline at end of file