diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java index 64a3191..a59b663 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterService.java @@ -99,6 +99,10 @@ public class EntityLogConverterService { return; } + if (entry.getEntryType() == EntryType.HINT) { + return; + } + if (entry.isExcluded()) { return; } @@ -111,6 +115,14 @@ public class EntityLogConverterService { return; } + if (entry.getEntryType() == EntryType.IMAGE_HINT && entry.getState().equals(EntryState.SKIPPED)) { + return; + } + + if (entry.getEntryType() == EntryType.AREA && (entry.getState().equals(EntryState.SKIPPED) || entry.getState().equals(EntryState.IGNORED))) { + return; + } + if (settings.getMaxRedactionEntryValueLength() > 0 && entry.getValue() != null && entry.getValue().length() > settings.getMaxRedactionEntryValueLength()) { entry.setValue(entry.getValue().substring(0, settings.getMaxRedactionEntryValueLength()) + "..."); log.info("Truncated value in dossier {}, file {} on pages {} to {} chars", diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java index 5c5b8af..60f6a28 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/RedactionReportIntegrationTest.java @@ -24,6 +24,7 @@ import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; +import java.util.stream.Collectors; import org.apache.commons.io.IOUtils; import org.apache.poi.xssf.streaming.SXSSFWorkbook; @@ -142,7 +143,7 @@ public class RedactionReportIntegrationTest { private Dossier prepareDossier() { var testDossier = new Dossier(); - testDossier.setDossierName("Test Dossier"); + testDossier.setName("Test Dossier"); testDossier.setDossierTemplateId("dossierTemplateId"); testDossier.setId("dossierId"); @@ -390,7 +391,7 @@ public class RedactionReportIntegrationTest { public void testExcelTemplateReportGenerationSingleFile() { Dossier dossier = prepareDossier(); - FileModel fileModel = FileModel.builder().filename("filename").dossierId(dossier.getDossierId()).fileAttributes(Map.of("TestAttribute", "Lorem Ipsum")).build(); + FileModel fileModel = FileModel.builder().filename("filename").dossierId(dossier.getId()).fileAttributes(Map.of("TestAttribute", "Lorem Ipsum")).build(); EntityLog entityLog = objectMapper.readValue(new ClassPathResource("files/entityLogWithParagraphIdx.json").getInputStream(), EntityLog.class); List legalBasisMapping = objectMapper.readValue(new ClassPathResource("files/legalBasisMapping.json").getInputStream(), new TypeReference<>() { @@ -406,7 +407,7 @@ public class RedactionReportIntegrationTest { var excelModel = excelTemplateReportGenerationService.calculateExcelModel(readWorkbook.getSheetAt(0), dossier.getDossierTemplateId()); SXSSFWorkbook writeWorkbook = new SXSSFWorkbook(); writeWorkbook.createSheet("Sheet1"); - excelTemplateReportGenerationService.generateExcelReport(reportEntries, placeholders, "test", writeWorkbook, dossier.getDossierName(), fileModel, excelModel, true); + excelTemplateReportGenerationService.generateExcelReport(reportEntries, placeholders, "test", writeWorkbook, dossier.getName(), fileModel, excelModel, true); byte[] excelTemplateReport3 = excelTemplateReportGenerationService.toByteArray(writeWorkbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/Excel Report_justification.xlsx")) { @@ -440,16 +441,16 @@ public class RedactionReportIntegrationTest { excelTemplateReportGenerationService.generateExcelReport(reportEntries, placeholders, "test", writeWorkbook, "dossierName", fileModel, excelModel, false); EntityLog entityLogSecondFile = objectMapper.readValue(new ClassPathResource("files/entityLog.json").getInputStream(), EntityLog.class); - List reportEntriesSecondFile = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID,entityLogSecondFile, legalBasisMapping, mapOfEntityDisplayName); + List reportEntriesSecondFile = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, entityLogSecondFile, legalBasisMapping, mapOfEntityDisplayName); FileModel fileModelSecondFile = FileModel.builder().filename("secondFile").build(); excelTemplateReportGenerationService.generateExcelReport(reportEntriesSecondFile, - placeholders, - "test", - writeWorkbook, - "dossierName", - fileModelSecondFile, - excelModel, - true); + placeholders, + "test", + writeWorkbook, + "dossierName", + fileModelSecondFile, + excelModel, + true); byte[] excelTemplateReport3 = excelTemplateReportGenerationService.toByteArray(writeWorkbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/Excel Report_multifile.xlsx")) { @@ -458,6 +459,41 @@ public class RedactionReportIntegrationTest { } + @Test + @SneakyThrows + void testExcelTemplateQCReportGenerationSingleFile() { + + Dossier dossier = prepareDossier(); + FileModel fileModel = FileModel.builder().filename("filename").dossierId(dossier.getId()).fileAttributes(Map.of("TestAttribute", "Lorem Ipsum")).build(); + + EntityLog entityLog = objectMapper.readValue(new ClassPathResource("files/entityLogWithImageHints.json").getInputStream(), EntityLog.class); + List legalBasisMapping = objectMapper.readValue(new ClassPathResource("files/legalBasisMapping.json").getInputStream(), new TypeReference<>() { + }); + Map mapOfEntityDisplayName = createEntityDisplayNames(entityLog); + List reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, entityLog, legalBasisMapping, mapOfEntityDisplayName); + List reportEntriesOnPage16 = reportEntries.stream() + .filter(entry -> entry.getPage() == 16) + .collect(Collectors.toList()); + assertThat(reportEntriesOnPage16).hasSize(3); + + ClassPathResource templateResource = new ClassPathResource("templates/Excel QC (incl. Skipped Redactions).xlsx"); + + var placeholders = buildPlaceHolderModel(new HashMap<>(), new HashMap<>(), List.of()); + + XSSFWorkbook readWorkbook = new XSSFWorkbook(templateResource.getInputStream()); + var excelModel = excelTemplateReportGenerationService.calculateExcelModel(readWorkbook.getSheetAt(0), dossier.getDossierTemplateId()); + SXSSFWorkbook writeWorkbook = new SXSSFWorkbook(); + writeWorkbook.createSheet("Sheet1"); + excelTemplateReportGenerationService.generateExcelReport(reportEntries, placeholders, "test", writeWorkbook, dossier.getName(), fileModel, excelModel, true); + + byte[] excelTemplateReport3 = excelTemplateReportGenerationService.toByteArray(writeWorkbook); + try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/Excel Report QC.xlsx")) { + fileOutputStream.write(excelTemplateReport3); + } + System.out.println(getTemporaryDirectory() + "/Excel Report QC.xlsx"); + } + + @Test @SneakyThrows public void testExcelPlaceholders() { @@ -498,7 +534,7 @@ public class RedactionReportIntegrationTest { Dossier dossier = prepareDossier(); FileModel fileModel = FileModel.builder() .filename("filename") - .dossierId(dossier.getDossierId()) + .dossierId(dossier.getId()) .dossierTemplateId(dossier.getDossierTemplateId()) .fileAttributes(Map.of("TestAttribute", "Lorem Ipsum", "1b5ebe26-34f2-4c3b-983d-c0f0a010302c", "402")) .build(); @@ -512,7 +548,7 @@ public class RedactionReportIntegrationTest { Map mapOfEntityDisplayName = createEntityDisplayNames(entityLog); List reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, entityLog, legalBasisMapping, mapOfEntityDisplayName); - when(componentClient.getComponentLog(dossier.getDossierId(), fileModel.getId(), true)).thenReturn(componentLog); + when(componentClient.getComponentLog(dossier.getId(), fileModel.getId(), true)).thenReturn(componentLog); when(fileAttributesConfigClient.getFileAttributeConfigs(dossier.getDossierTemplateId())).thenReturn(fileAttributeConfigs); ClassPathResource templateResource = new ClassPathResource("templates/scm_report.xlsx"); @@ -523,7 +559,7 @@ public class RedactionReportIntegrationTest { var excelModel = excelTemplateReportGenerationService.calculateExcelModel(readWorkbook.getSheetAt(0), dossier.getDossierTemplateId()); SXSSFWorkbook writeWorkbook = new SXSSFWorkbook(); writeWorkbook.createSheet("Sheet1"); - excelTemplateReportGenerationService.generateExcelReport(reportEntries, placeholders, "test", writeWorkbook, dossier.getDossierName(), fileModel, excelModel, true); + excelTemplateReportGenerationService.generateExcelReport(reportEntries, placeholders, "test", writeWorkbook, dossier.getName(), fileModel, excelModel, true); byte[] excelTemplateReport3 = excelTemplateReportGenerationService.toByteArray(writeWorkbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/scm_report.xlsx")) { diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterServiceTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterServiceTest.java index cb52d42..b3656ee 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterServiceTest.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/service/EntityLogConverterServiceTest.java @@ -78,7 +78,7 @@ public class EntityLogConverterServiceTest { assertNotNull(reportEntries); assertFalse(reportEntries.isEmpty()); - assertEquals(reportEntries.size(), 77); + assertEquals(62, reportEntries.size()); assertEquals(reportEntries.get(0).getPage(), 1); assertEquals(reportEntries.get(0).getSection(), "[1]: Section: Rule 1/2: Redact CBI"); assertEquals(reportEntries.get(0).getJustification(), "Article 39(e)(3) of Regulation (EC) No 178/2002 "); diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithImageHints.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithImageHints.json new file mode 100644 index 0000000..92ffa1b --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/files/entityLogWithImageHints.json @@ -0,0 +1,15832 @@ +{ + "analysisVersion": 1, + "analysisNumber": 2, + "entityLogEntry": [ + { + "id": "52520d8f0cfc5d8f2d6ceb6752e24283", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Statesearch Ltd., R. Nice Lobao 143 - Sao Cristovao, Sao Luís MA, 65058-667, Brazil", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 2, + 0, + 5 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Table_cell: • Statesearch Ltd., R.", + "color": null, + "positions": [ + { + "rectangle": [ + 275.1, + 123.59999, + 268.88388, + 11.81175 + ], + "pageNumber": 1 + }, + { + "rectangle": [ + 360.4, + 111.500015, + 98.448, + 11.81175 + ], + "pageNumber": 1 + } + ], + "textBefore": "• ", + "textAfter": "", + "startOffset": 1411, + "endOffset": 1494, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 22 + }, + { + "id": "c392ea562c9458c964ae2f4c7a9a7a77", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Michael, J.", + "reason": "Author found", + "matchedRule": "CBI.9.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 9, + 2, + 0, + 11 + ], + "closestHeadline": "CBI.9.1/10.1: Redact all cells with Header Author as CBI Author ", + "section": "Table_cell: Michael, J.", + "color": null, + "positions": [ + { + "rectangle": [ + 141.7, + 400.6, + 46.29454, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 4218, + "endOffset": 4229, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 41 + }, + { + "id": "6f69c4e811a2f598257ac46aa40b71d5", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Osip S.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 39, + 1, + 0 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Paragraph: Manuel, S., Ashley B.,", + "color": null, + "positions": [ + { + "rectangle": [ + 436.7562, + 548.2, + 35.28, + 12.642 + ], + "pageNumber": 17 + } + ], + "textBefore": "G., but with ", + "textAfter": ", Iakovos, G.,", + "startOffset": 15620, + "endOffset": 15627, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "8493712b4a238cc6933a150c00babc76", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Veronica Smith", + "reason": "Found after \"Contact:\" contact keyword", + "matchedRule": "PII.5.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 23, + 2 + ], + "closestHeadline": "PII.5.0/1: Redact line after contact information keywords reduced ", + "section": "Paragraph: Contact point: Allan Smith", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 285.9, + 74.25609, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "Allan Smith Contact: ", + "textAfter": " Alternative contact: Simon", + "startOffset": 10107, + "endOffset": 10121, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "c3d90b10711c08d9ced8170fb2164520", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Mike Herrera", + "reason": "Published Information found in row", + "matchedRule": "CBI.7.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 6, + 1, + 7 + ], + "closestHeadline": "CBI.7.1: Do not redact Names if published informations found in Section (with tables) ", + "section": "Table_cell: • • • Mike", + "color": null, + "positions": [ + { + "rectangle": [ + 293.9, + 267.90005, + 56.8154, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "• • • ", + "textAfter": " Judith Mosley Woody", + "startOffset": 2842, + "endOffset": 2854, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "bae41fa309d225213410b7b2c4ac6297" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 18 + }, + { + "id": "e1ba7b03401ec059543d4eea9fb3c934", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "KML", + "reason": "Personal information found", + "matchedRule": "PII.10.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 28, + 1, + 1 + ], + "closestHeadline": "PII.10.0: Redact study director abbreviation ", + "section": "Paragraph: The study was submitted", + "color": null, + "positions": [ + { + "rectangle": [ + 421.57602, + 419.3, + 26.699982, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "KATH6764, KML5058-12 and ", + "textAfter": "9201. The approval", + "startOffset": 12825, + "endOffset": 12828, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "2620a52117fd697955a695cca5959e28", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "9-19 Queen Anne St, London, UK", + "reason": "Published Information found in section", + "matchedRule": "CBI.7.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 5, + 2 + ], + "closestHeadline": "CBI.7.0: Do not redact Addresses if published informations found in Section (without tables) ", + "section": "Paragraph: According to the medical", + "color": null, + "positions": [ + { + "rectangle": [ + 92.8, + 356.7, + 164.316, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "Paris, France • ", + "textAfter": "", + "startOffset": 2579, + "endOffset": 2609, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "f6c21a30428152468076c7e1d3876d18" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "bf4ebce63aec6855b8bcf1d3f576fba7", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 44", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 5 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Tel.: +49 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 304.9, + 96.79198, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "551 43 Telephone: ", + "textAfter": " Phone No. +49", + "startOffset": 11942, + "endOffset": 11960, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "dbebd7757d8653c6ef45546c4dded7d1", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 451.1, + 32.003994, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "because case sensitive ", + "textAfter": " >99% ← not", + "startOffset": 14468, + "endOffset": 14475, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "52471a845d2eb5de590e26011529080b", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Phillips", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 3, + 3 + ], + "closestHeadline": "CBI.2: Do not redact genitive CBI Authors ", + "section": "Paragraph: Phillipʻs Phillip’s Phillip's Phillips", + "color": null, + "positions": [ + { + "rectangle": [ + 388.7, + 633.8, + 36.636047, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "Phillipʻs Phillip’s Phillip's ", + "textAfter": " Phillip ← should", + "startOffset": 1667, + "endOffset": 1675, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "03b021cf8037a9104c2243649b96e6f4", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Julie Ben", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 1 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Name: Nelman Ozbarn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 511.90002, + 44.976013, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "Richard Loewe Contact: ", + "textAfter": "", + "startOffset": 10730, + "endOffset": 10739, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "df4ea641adfcf5cbafe2b323cefbd782", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 7", + "reason": "Found by Phone and Fax Regex", + "matchedRule": "PII.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 20, + 2 + ], + "closestHeadline": "PII.2.0/1: Redact Phone and Fax by RegEx ", + "section": "Paragraph: Contact 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 75.784004, + 541.8, + 95.99999, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "551 6 Fer ", + "textAfter": "", + "startOffset": 8771, + "endOffset": 8789, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "8888b4f838a42a16afd026d2ffd12bd1", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Francesco Goodman", + "reason": "Published Information found in row", + "matchedRule": "CBI.7.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 6, + 1, + 4 + ], + "closestHeadline": "CBI.7.1: Do not redact Names if published informations found in Section (with tables) ", + "section": "Table_cell: Francesco Goodman, Lucian Terrell", + "color": null, + "positions": [ + { + "rectangle": [ + 190.7, + 285.6, + 86.457016, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "", + "textAfter": ", Lucian Terrell", + "startOffset": 2766, + "endOffset": 2783, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY", + "NER" + ], + "reference": [ + "79fca5c7e5cdf7cc7b6a08e29f7073dd" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 15 + }, + { + "id": "362862d749885e1eeea868a7720bed97", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Shaun Juarez", + "reason": "Published Information found in row", + "matchedRule": "CBI.7.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 6, + 1, + 4 + ], + "closestHeadline": "CBI.7.1: Do not redact Names if published informations found in Section (with tables) ", + "section": "Table_cell: Francesco Goodman, Lucian Terrell", + "color": null, + "positions": [ + { + "rectangle": [ + 362.15448, + 285.6, + 55.597473, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "Lucian Terrell and ", + "textAfter": "", + "startOffset": 2804, + "endOffset": 2816, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "79fca5c7e5cdf7cc7b6a08e29f7073dd" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 15 + }, + { + "id": "7cd0f01690d046d189eab0dd3fd1a19f", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 575.3, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "should be Hint ", + "textAfter": " 101% ← should", + "startOffset": 13991, + "endOffset": 13998, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "067bbade82ae6b52fa2bb1be51b17514", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "993-221", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 4 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: No: 993-221 Contact: Steffanie", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 401.5, + 39.996002, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "No: ", + "textAfter": " Contact: Steffanie Soja", + "startOffset": 10864, + "endOffset": 10871, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 7 + }, + { + "id": "e656b8f55ff27049f571d8c348d8c056", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441551-10", + "reason": "Telephone number found by regex", + "matchedRule": "PII.3.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 21, + 2 + ], + "closestHeadline": "PII.3.0/1: Redact telephone numbers by RegEx ", + "section": "Paragraph: The phone number of", + "color": null, + "positions": [ + { + "rectangle": [ + 234.04004, + 437.7, + 97.787994, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "questions, please contact ", + "textAfter": ". The phone", + "startOffset": 9066, + "endOffset": 9083, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "40686621e3f7b68949f82dc4ec752c99", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Belkov", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 12, + 2 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (2) ", + "section": "Paragraph: Thanks to the persons", + "color": null, + "positions": [ + { + "rectangle": [ + 364.01215, + 367.5, + 34.59604, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "test methods of ", + "textAfter": ", Sminko the", + "startOffset": 6130, + "endOffset": 6136, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 19 + }, + { + "id": "33b68ba477e3f2f75791582848536a8d", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Pharmacy exp, 33-39 Lilian Rd, Fordsburg, Johannesburg, 2033, South Africa", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 2, + 0, + 3 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Table_cell: Distributed by Pharmacy exp,", + "color": null, + "positions": [ + { + "rectangle": [ + 300.22647, + 153.40004, + 245.51096, + 11.81175 + ], + "pageNumber": 1 + }, + { + "rectangle": [ + 296.0, + 141.3, + 79.484985, + 11.81175 + ], + "pageNumber": 1 + } + ], + "textBefore": "Distributed by ", + "textAfter": " and delievered worldwide", + "startOffset": 1305, + "endOffset": 1379, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 20 + }, + { + "id": "ddb409cdc06bfd40868aeacfec9dc264", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "MasterMind Ltd., 207-33 Itaewon-dong, Yongsan-gu, Seoul, South Korea", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 1, + 2 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Paragraph: The medicine is distributed", + "color": null, + "positions": [ + { + "rectangle": [ + 471.73627, + 227.6, + 59.28003, + 12.642 + ], + "pageNumber": 1 + }, + { + "rectangle": [ + 56.8, + 213.80002, + 291.9361, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Further locations are ", + "textAfter": " and ESP Research,", + "startOffset": 1130, + "endOffset": 1198, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 16 + }, + { + "id": "78c07953d25b2d3e3ef432596046dcd9", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "luthor.lex1@mail.com", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 445.2, + 107.67616, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "551 24 E-mail: ", + "textAfter": " Email: luthor.lex2@mail.com e-mail:", + "startOffset": 9797, + "endOffset": 9817, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "c26e8a179edffa31a2d8c2fe0a2808ae", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Lain", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 41, + 2, + 15 + ], + "closestHeadline": "Manual Redaction Test ", + "section": "Paragraph: Full he none no", + "color": null, + "positions": [ + { + "rectangle": [ + 217.75998, + 476.5, + 18.290009, + 11.535 + ], + "pageNumber": 19 + } + ], + "textBefore": "out attending described. ", + "textAfter": " just fact four", + "startOffset": 19239, + "endOffset": 19243, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "37b37160f89d053372802305caa0b5d0", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Nelman Ozbarn Address", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 25, + 2, + 1 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Name: Nelman Ozbarn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 594.7, + 76.27205, + 12.642 + ], + "pageNumber": 9 + }, + { + "rectangle": [ + 56.8, + 580.9, + 39.348003, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "Name: ", + "textAfter": ": No. 8,", + "startOffset": 10606, + "endOffset": 10627, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "cb7348f19d5c4ec2fffda9b42069f6df", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Byron, C.", + "reason": "Author found", + "matchedRule": "CBI.9.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 9, + 2, + 0, + 16 + ], + "closestHeadline": "CBI.9.1/10.1: Redact all cells with Header Author as CBI Author ", + "section": "Table_cell: Byron, C.", + "color": null, + "positions": [ + { + "rectangle": [ + 144.3, + 383.0, + 41.086517, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 4291, + "endOffset": 4300, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 46 + }, + { + "id": "0e37c67f86094ccc63f3495843868922", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Madame Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 587.5, + 74.19601, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13377, + "endOffset": 13390, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "82f87cacd44a034e9ccd81a6a654213a", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Ranya Eikenboom", + "reason": "Published Information found in section", + "matchedRule": "CBI.7.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 4, + 1 + ], + "closestHeadline": "CBI.7.0: Do not redact Names if published informations found in Section (without tables) ", + "section": "Paragraph: The following authors involved", + "color": null, + "positions": [ + { + "rectangle": [ + 340.01212, + 522.1, + 88.90808, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "Mendel (Pixar) and ", + "textAfter": " (Umbrella Corp).", + "startOffset": 2028, + "endOffset": 2043, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "6cac11e690be60501e7c4dbb98676a61" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "99372cadcf35ff2df38e315aca8db450", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Valeriya, D.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 39, + 1, + 0 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Paragraph: Manuel, S., Ashley B.,", + "color": null, + "positions": [ + { + "rectangle": [ + 264.50803, + 548.2, + 57.588104, + 12.642 + ], + "pageNumber": 17 + } + ], + "textBefore": "in cooperation with ", + "textAfter": ", and Max,", + "startOffset": 15584, + "endOffset": 15596, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "c4b0174d73a5d1f73912e8316545c8ec", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Buikslotermeerplein 13, 1025 JR Amsterdam, Netherlands", + "reason": "Published Information found in row", + "matchedRule": "CBI.7.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 7, + 2, + 0, + 7 + ], + "closestHeadline": "CBI.7.1: Do not redact Addresses if published informations found in Section (with tables) ", + "section": "Table_cell: • • 1129-7 Guwol-dong,", + "color": null, + "positions": [ + { + "rectangle": [ + 171.9, + 94.70003, + 245.54242, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "Incheon, South Korea ", + "textAfter": "", + "startOffset": 3322, + "endOffset": 3376, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "75fe6af1507ad1670bcce8237b660618" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 29 + }, + { + "id": "c1c0520913a76fff5e348af34988d004", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "BECH", + "reason": "Personal information found", + "matchedRule": "PII.10.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 28, + 2, + 0, + 5 + ], + "closestHeadline": "PII.10.0: Redact study director abbreviation ", + "section": "Table_cell: BECH3311", + "color": null, + "positions": [ + { + "rectangle": [ + 369.8, + 350.2, + 31.94403, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "", + "textAfter": "3311", + "startOffset": 12959, + "endOffset": 12963, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 15 + }, + { + "id": "e06e99d10ee53b82f011386730c21adb", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Redact between No and F/ax", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 8 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: No: Redact between No", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 166.90005, + 138.55205, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "No: ", + "textAfter": " Fax", + "startOffset": 11239, + "endOffset": 11265, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 11 + }, + { + "id": "b5cf22565a2a239ec94fb3c36791b1bf", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "sabine.heldt02@mail.com", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 7 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: E-mail: sabine.heldt01@mail.com Email: sabine.heldt02@mail.com", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 222.1, + 125.67613, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "E-mail: sabine.heldt01@mail.com Email: ", + "textAfter": " e-mail: sabine.heldt03@mail.com E-mail", + "startOffset": 11139, + "endOffset": 11162, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "52b6a81da0e2ab9ebef8be8a4dc66ee7", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Greg, M.", + "reason": "Author(s) found", + "matchedRule": "CBI.9.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 8, + 2, + 0, + 21 + ], + "closestHeadline": "CBI.9.0/10.0: Redact all cells with Header Author(s) as CBI Author ", + "section": "Table_cell: Greg, M.", + "color": null, + "positions": [ + { + "rectangle": [ + 145.7, + 530.1, + 38.19902, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 3864, + "endOffset": 3872, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 24 + }, + { + "id": "5f72c17a5edefef916e13fd9c75bc5bd", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Alexandra, H.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 39, + 1, + 0 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Paragraph: Manuel, S., Ashley B.,", + "color": null, + "positions": [ + { + "rectangle": [ + 326.39206, + 534.4, + 67.584045, + 12.642 + ], + "pageNumber": 17 + } + ], + "textBefore": "and Carina, M., ", + "textAfter": "", + "startOffset": 15699, + "endOffset": 15712, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "addf349c015f8bd08f8fd274a245d7b7", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "gordonjcp@msn.com", + "reason": "Found by Email Regex", + "matchedRule": "PII.1.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 19, + 1, + 1 + ], + "closestHeadline": "PII.1.0/1: Redact Emails by RegEx ", + "section": "Paragraph: The email addresses for", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 316.3, + 103.308, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "are library@outlook.com and ", + "textAfter": ". For further", + "startOffset": 8201, + "endOffset": 8218, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 13 + }, + { + "id": "141b19aefbddfe52750267ddeee945bd", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Charalampos Schenk", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 1, + 1 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Paragraph: David Ksenia Max Mustermann", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 534.8, + 101.56799, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Mustermann Ranya Eikenboom ", + "textAfter": "", + "startOffset": 213, + "endOffset": 231, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "813485d8912aa0e2ab521c361e59f0d6", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 492.5, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "because additional symbols ", + "textAfter": " 45%aa ← should", + "startOffset": 14337, + "endOffset": 14344, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "b38f266a8db88ab5c408c0014afb35e3", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "CTL", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 41, + 1, + 0 + ], + "closestHeadline": "SYN.1.0: Redact addresses that start with BL or CTL ", + "section": "Paragraph: Term contain BL and", + "color": null, + "positions": [ + { + "rectangle": [ + 143.46999, + 211.9, + 17.75, + 11.535 + ], + "pageNumber": 17 + } + ], + "textBefore": "contain BL and ", + "textAfter": " should be recommended", + "startOffset": 16269, + "endOffset": 16272, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 16 + }, + { + "id": "01c7f29ecf1160137c1cba040b23a789", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Sonja Nier", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 2 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Alternative contact: Sonja Nier", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 484.3, + 51.660004, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "Alternative contact: ", + "textAfter": " European contact: Michelle", + "startOffset": 10761, + "endOffset": 10771, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "c4587ec065c8e81ad53c34417b8ef866", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 658.1, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "Test Item: Soda ", + "textAfter": " 45% ← should", + "startOffset": 13810, + "endOffset": 13817, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "214844bf2d57ae429131f7ecd82e1f5a", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 45", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 5 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Tel.: +49 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 291.1, + 96.79198, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "44 Phone No. ", + "textAfter": " Phone: +49 331", + "startOffset": 11971, + "endOffset": 11989, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "8d50dc4372615e91840dda51b85e967f", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Madame . Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 435.7, + 80.19601, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13713, + "endOffset": 13728, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "c138fcbd9b51e84fa486df489891f3ee", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 4", + "reason": "Found by Phone and Fax Regex", + "matchedRule": "PII.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 20, + 2 + ], + "closestHeadline": "PII.2.0/1: Redact Phone and Fax by RegEx ", + "section": "Paragraph: Contact 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 125.404, + 583.2, + 95.99999, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "551 3 TelephoneTer ", + "textAfter": " Mobile 0049 331", + "startOffset": 8699, + "endOffset": 8717, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "c021361617d58f9ce704770460e7b3a4", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Yuko Suzuki", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 2, + 0, + 3 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Table_cell: Researcher Yuko Suzuki was", + "color": null, + "positions": [ + { + "rectangle": [ + 337.45142, + 454.3, + 53.97, + 11.81175 + ], + "pageNumber": 6 + } + ], + "textBefore": "Researcher ", + "textAfter": " was a former", + "startOffset": 7918, + "endOffset": 7929, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "cc2870bcdd8c2f4689fb7a291275b229", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Morpheus Duvall", + "reason": "Author(s) found", + "matchedRule": "CBI.9.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 10, + 2, + 0, + 21 + ], + "closestHeadline": "CBI.11: Recommend all CBI Authors entities in Table with Vertebrate Study Y/N Header ", + "section": "Table_cell: Morpheus Duvall", + "color": null, + "positions": [ + { + "rectangle": [ + 146.0, + 202.90004, + 73.64705, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 4783, + "endOffset": 4798, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 78 + }, + { + "id": "836b2ec2d850d5aff32883b1677df1fe", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Xinyi Y. Tao", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 1, + 1 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Paragraph: Naka-27 Aomachi, Nomi, Ishikawa", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 556.2, + 60.575993, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "C. J. Alfred ", + "textAfter": "", + "startOffset": 7654, + "endOffset": 7666, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "7db27d8d1ab293384e9fec0773a7ef59", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Mrs Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 642.7, + 51.575996, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13261, + "endOffset": 13271, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "e993626d29b62ba0959bb7718ae600e7", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Dr. Alan Miller", + "reason": "AUTHOR(S) was found", + "matchedRule": "CBI.23.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 27, + 2 + ], + "closestHeadline": "PII.9.0/1: Redact between AUTHOR\\(S) and (STUDY) COMPLETION\\ DATE ", + "section": "Paragraph: AUTHOR(S): Dr. Alan Miller", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 639.4, + 67.49599, + 12.0885 + ], + "pageNumber": 11 + } + ], + "textBefore": "AUTHOR(S): ", + "textAfter": "", + "startOffset": 12400, + "endOffset": 12415, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "e41893c432efadfc440199df772f398f", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Sabine Heldt", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 4 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: No: 993-222 Contact: Sabine", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 387.7, + 62.292007, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "No: 993-222 Contact: ", + "textAfter": "", + "startOffset": 11799, + "endOffset": 11811, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 7 + }, + { + "id": "bd43e0005c8a35e8ab5c83e86c22e440", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Feuer A.", + "reason": "Author(s) found", + "matchedRule": "CBI.9.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 8, + 2, + 0, + 16 + ], + "closestHeadline": "CBI.9.0/10.0: Redact all cells with Header Author(s) as CBI Author ", + "section": "Table_cell: Feuer A.", + "color": null, + "positions": [ + { + "rectangle": [ + 146.8, + 559.9, + 36.0885, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 3771, + "endOffset": 3779, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 19 + }, + { + "id": "f0b6558098ab751332e03840c4715d59", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Ms. Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 477.1, + 50.57998, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13621, + "endOffset": 13631, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "97f32c7065993a741d6373243d29f8b7", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Sophia,", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 41, + 2, + 8 + ], + "closestHeadline": "Manual Redaction Test ", + "section": "Paragraph: Lorem ipsum Sophia, E.", + "color": null, + "positions": [ + { + "rectangle": [ + 124.15599, + 379.0, + 36.203995, + 12.642 + ], + "pageNumber": 18 + } + ], + "textBefore": "Lorem ipsum ", + "textAfter": " E. Lorem ipsum", + "startOffset": 17500, + "endOffset": 17507, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "ec27ef8e27c9810c6a6ba11de0d29c99", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 36", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 6 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Telephone number: +49 331", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 277.3, + 96.79198, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "35 Phone No. ", + "textAfter": " Phone: +49 331", + "startOffset": 11055, + "endOffset": 11073, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "2375b0583271f3d3ecff09e6ba7fad47", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Ralf, H.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 39, + 2, + 0, + 5 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Table_cell: Zum Bildprogramm der Himmelsscheibe", + "color": null, + "positions": [ + { + "rectangle": [ + 176.7, + 441.6, + 34.97545, + 11.859 + ], + "pageNumber": 17 + } + ], + "textBefore": "oder Sichel von ", + "textAfter": "", + "startOffset": 15897, + "endOffset": 15905, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 11 + }, + { + "id": "934fa5f8c50d7bace7f8e86dc3941097", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 31", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 5 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Tel.: +49 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 360.1, + 96.79198, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "Tel.: ", + "textAfter": " Tel: +49 331", + "startOffset": 10902, + "endOffset": 10920, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "0595e7a542913dfd6d2cc14588297170", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "library@outlook.com", + "reason": "Found by Email Regex", + "matchedRule": "PII.1.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 19, + 1, + 1 + ], + "closestHeadline": "PII.1.0/1: Redact Emails by RegEx ", + "section": "Paragraph: The email addresses for", + "color": null, + "positions": [ + { + "rectangle": [ + 339.90414, + 330.1, + 103.308136, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "this project are ", + "textAfter": " and gordonjcp@msn.com. For", + "startOffset": 8177, + "endOffset": 8196, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 13 + }, + { + "id": "2a50cb8657a20ed9bcf89d79dcdfcd75", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Sonnenschein", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 32, + 2 + ], + "closestHeadline": "ETC.2.0: Redact Signatures ", + "section": "Paragraph: __________________________ Signed by: Dilara", + "color": null, + "positions": [ + { + "rectangle": [ + 144.448, + 506.3, + 66.576004, + 12.642 + ], + "pageNumber": 14 + } + ], + "textBefore": "Signed by: Dilara ", + "textAfter": "", + "startOffset": 14908, + "endOffset": 14920, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "b0d166a3a8116fa2e176b9d59e0569bf", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Tommy Neilson", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 2, + 0, + 5 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Table_cell: Tommy Neilson is a", + "color": null, + "positions": [ + { + "rectangle": [ + 327.0, + 436.7, + 67.683014, + 11.81175 + ], + "pageNumber": 6 + } + ], + "textBefore": "", + "textAfter": " is a Executive", + "startOffset": 7960, + "endOffset": 7973, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "b92b61e728c66b5a0b191d04734e8700", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Alexandra Häusler", + "reason": "Published Information found in section", + "matchedRule": "CBI.7.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 4, + 1 + ], + "closestHeadline": "CBI.7.0: Do not redact Names if published informations found in Section (without tables) ", + "section": "Paragraph: The following authors involved", + "color": null, + "positions": [ + { + "rectangle": [ + 425.60812, + 535.9, + 90.180084, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "Carina Madsen (InGen), ", + "textAfter": " (Weyland-Yutani Corporation), Hanke", + "startOffset": 1955, + "endOffset": 1972, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "6cac11e690be60501e7c4dbb98676a61" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "ab6b4d67e204e0a43b1f1ca32d6ba332", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Sequani Ltd.", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 29, + 1 + ], + "closestHeadline": "PII.11.0: Redact On behalf of Sequani Ltd ", + "section": "Paragraph: On behalf of Sequani", + "color": null, + "positions": [ + { + "rectangle": [ + 123.74799, + 257.50003, + 66.01197, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "On behalf of ", + "textAfter": ": Name Title", + "startOffset": 13039, + "endOffset": 13051, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 19 + }, + { + "id": "b672d2ea63fdbae6909465bd3236db2a", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Sude Halide Nurullah", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 1, + 1 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Paragraph: Naka-27 Aomachi, Nomi, Ishikawa", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 611.4, + 104.556, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "923-1101, Japan, JP ", + "textAfter": " Özgür U. Reyhan", + "startOffset": 7595, + "endOffset": 7615, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "07f9e031ae8f34dfdc3626c42c4ed4aa", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Asya Lyon", + "reason": "Published Information found in section", + "matchedRule": "CBI.7.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 4, + 1 + ], + "closestHeadline": "CBI.7.0: Do not redact Names if published informations found in Section (without tables) ", + "section": "Paragraph: The following authors involved", + "color": null, + "positions": [ + { + "rectangle": [ + 141.424, + 535.9, + 52.28401, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "Oxford University Press: ", + "textAfter": " (Cyberdyne Systems), Carina", + "startOffset": 1901, + "endOffset": 1910, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "6cac11e690be60501e7c4dbb98676a61" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "da00a28d773c25c20bb7dd96ea696972", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "CTL", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 41, + 0 + ], + "closestHeadline": "SYN.1.0: Redact addresses that start with BL or CTL ", + "section": "Headline: SYN.1.0: Redact addresses that", + "color": null, + "positions": [ + { + "rectangle": [ + 376.75198, + 230.20003, + 27.118011, + 13.812 + ], + "pageNumber": 17 + } + ], + "textBefore": "with BL or ", + "textAfter": "", + "startOffset": 16245, + "endOffset": 16248, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 15 + }, + { + "id": "fcd26f8b36618a8b61e3caeeb5c06503", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Desiree", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 12, + 2 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (2) ", + "section": "Paragraph: Thanks to the persons", + "color": null, + "positions": [ + { + "rectangle": [ + 210.06401, + 367.5, + 36.600006, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "the persons Melanie, ", + "textAfter": " and the test", + "startOffset": 6098, + "endOffset": 6105, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 19 + }, + { + "id": "a3b7537052db8f8380be5eb46432d0a0", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 589.1, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "should be Hint ", + "textAfter": " 100% ← should", + "startOffset": 13961, + "endOffset": 13968, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "3bf37e69db1f34f426847c6491c3ec57", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Maximus Coleman", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 2, + 0, + 3 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Table_cell: Lawson Stafford and Maximus", + "color": null, + "positions": [ + { + "rectangle": [ + 333.92593, + 446.8, + 80.073, + 11.81175 + ], + "pageNumber": 1 + } + ], + "textBefore": "Lawson Stafford and ", + "textAfter": " was the special", + "startOffset": 429, + "endOffset": 444, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "8c2d8cf17e84c93b427e06daf0da6017", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Mrs . Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 490.9, + 57.575996, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13590, + "endOffset": 13602, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "1dbc7a64fa845e4b844882ef0791f5ac", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Christine Henri", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 1, + 2 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Paragraph: Possible incidents with the", + "color": null, + "positions": [ + { + "rectangle": [ + 456.83224, + 514.8, + 74.19595, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "deputy press officer ", + "textAfter": " of Daily Medical.", + "startOffset": 7847, + "endOffset": 7862, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "3eb08b745a6b40d56c81ae8ecbd4a32e", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 3", + "reason": "Found by Phone and Fax Regex", + "matchedRule": "PII.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 20, + 2 + ], + "closestHeadline": "PII.2.0/1: Redact Phone and Fax by RegEx ", + "section": "Paragraph: Contact 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 77.788, + 597.0, + 95.99999, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "551 2 Fax ", + "textAfter": " TelephoneTer 0049 331", + "startOffset": 8667, + "endOffset": 8685, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "a5fc346954ea5d3ba3e401497dc1eb7c", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Norman", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 1 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Name: Norman Osborn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 594.7, + 39.28801, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "Name: ", + "textAfter": " Osborn Address: No.", + "startOffset": 11503, + "endOffset": 11509, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "ebf733cc5fbf4fe8efa96ad61237a45a", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 561.5, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "is not possible ", + "textAfter": " =>45% ← should", + "startOffset": 14056, + "endOffset": 14063, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "69a21691360e245ec6dcaffc327ad3d2", + "type": "CBI_address", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Stark Industries", + "reason": "Line after \"Source\" in Test Organism Section", + "matchedRule": "CBI.17.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 13, + 2 + ], + "closestHeadline": "CBI.17.0: Add recommendation for Addresses in Test Organism sections, without colon ", + "section": "Paragraph: Recommend as CBI Address", + "color": null, + "positions": [ + { + "rectangle": [ + 316.66, + 637.4, + 75.54007, + 12.642 + ], + "pageNumber": 5 + } + ], + "textBefore": "Species Mouse Source ", + "textAfter": "", + "startOffset": 6514, + "endOffset": 6530, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "d102aba8ba8034601344dc2c89a2ba5b", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Miss . Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 463.3, + 61.572, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13650, + "endOffset": 13663, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "bb4b322f435348ce1da4d5ad934351dc", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Iakovos, G.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 39, + 1, + 0 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Paragraph: Manuel, S., Ashley B.,", + "color": null, + "positions": [ + { + "rectangle": [ + 478.0362, + 548.2, + 55.679993, + 12.642 + ], + "pageNumber": 17 + } + ], + "textBefore": "with Osip S., ", + "textAfter": ", work together", + "startOffset": 15629, + "endOffset": 15640, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "f78489a3b984556d5014697dc6819636", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Loc. 103, Cl. 129 58-15, Suba, Bogota, Colombia", + "reason": "Published Information found in section", + "matchedRule": "CBI.7.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 5, + 2 + ], + "closestHeadline": "CBI.7.0: Do not redact Addresses if published informations found in Section (without tables) ", + "section": "Paragraph: According to the medical", + "color": null, + "positions": [ + { + "rectangle": [ + 92.8, + 384.3, + 238.93211, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "Montevideo, Uruguay • ", + "textAfter": " • 2 Imp.", + "startOffset": 2484, + "endOffset": 2531, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "f6c21a30428152468076c7e1d3876d18" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "e1417f648b19b7b6c7f3851ab7396d28", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Sir Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 601.3, + 46.28399, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13348, + "endOffset": 13358, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "c570fb5478245f91675c62ff9ad9875c", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Igarashi Akitaka", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 1, + 2 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Paragraph: Authors Kara Hunt and", + "color": null, + "positions": [ + { + "rectangle": [ + 285.72406, + 493.4, + 78.900085, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Coleman Charles and ", + "textAfter": ".", + "startOffset": 367, + "endOffset": 383, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "77502a4aa5fb1c85bf130136469d0dae", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Redact between No and F/ax", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 7 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: No: Redact between No", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 180.70004, + 138.55205, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "No: ", + "textAfter": " Fax", + "startOffset": 12155, + "endOffset": 12181, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "3ef649bc7f5e516fe11cdb9783952dc2", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Shlissel'burgskaya Ulitsa, Nizhny Novgorod Oblast, Russia, 603034, RU", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 1, + 1 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Paragraph: Warnsveld, 7232 CX Warnsveld,", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 269.0, + 350.11215, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "6078 Lungern, Switzerland ", + "textAfter": "", + "startOffset": 877, + "endOffset": 946, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 15 + }, + { + "id": "39451578e2c849464bbe7bc923057c22", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Lawson Stafford", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 2, + 0, + 3 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Table_cell: Lawson Stafford and Maximus", + "color": null, + "positions": [ + { + "rectangle": [ + 243.5, + 446.8, + 69.99295, + 11.81175 + ], + "pageNumber": 1 + } + ], + "textBefore": "", + "textAfter": " and Maximus Coleman", + "startOffset": 409, + "endOffset": 424, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "5cbeff1789564da93421060f2fe0a6ba", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 24", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 459.0, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "551 23 Fax: ", + "textAfter": " E-mail: luthor.lex1@mail.com Email:", + "startOffset": 9769, + "endOffset": 9788, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "d41ba09cd1c35c5e1c80a84bce551335", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Melanie", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 40, + 1 + ], + "closestHeadline": "AI.1.0: Combine and add NER Entities as CBI_address ", + "section": "Paragraph: Soylent Corporation Cyberdyne Systems", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 370.3, + 36.802494, + 11.859 + ], + "pageNumber": 17 + } + ], + "textBefore": "Corporation Cyberdyne Systems ", + "textAfter": " Ziek Fourth Street", + "startOffset": 15996, + "endOffset": 16003, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 13 + }, + { + "id": "7dc555f04c869a1130dab2c081c532f5", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Phillip", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 3, + 3 + ], + "closestHeadline": "CBI.2: Do not redact genitive CBI Authors ", + "section": "Paragraph: Phillipʻs Phillip’s Phillip's Phillips", + "color": null, + "positions": [ + { + "rectangle": [ + 388.7, + 620.0, + 31.968048, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "Phillip’s Phillip's Phillips ", + "textAfter": " ← should be", + "startOffset": 1676, + "endOffset": 1683, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "e6888f82ecdf441913188874bf3e8193", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Carrol Ferris", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 610.8, + 61.62004, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "Luthor European contact: ", + "textAfter": " No: 0049 331", + "startOffset": 9454, + "endOffset": 9467, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "e4c036496e3d910427b002b67d9ec8e6", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Yoshua, R.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 39, + 2, + 0, + 3 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Table_cell: Provenance of the gold", + "color": null, + "positions": [ + { + "rectangle": [ + 394.68024, + 486.0, + 50.956604, + 11.859 + ], + "pageNumber": 17 + } + ], + "textBefore": "Early Bronze for ", + "textAfter": " in Age Nebra", + "startOffset": 15788, + "endOffset": 15798, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "5ba52fd09be5b74466efb62d300ce035", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "LexCo", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 638.4, + 32.591995, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "Contact point: ", + "textAfter": " Contact: Lex Luthor", + "startOffset": 9410, + "endOffset": 9415, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "6791406ce249231e6b483399fe77cf24", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Ross", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 10, + 3, + 1 + ], + "closestHeadline": "CBI.11: Recommend all CBI Authors entities in Table with Vertebrate Study Y/N Header ", + "section": "Paragraph: Researcher Carter Stein was", + "color": null, + "positions": [ + { + "rectangle": [ + 186.73602, + 136.70004, + 23.255997, + 12.642 + ], + "pageNumber": 3 + } + ], + "textBefore": "researchers Smith and ", + "textAfter": " Hamster. The distribution", + "startOffset": 4997, + "endOffset": 5001, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 83 + }, + { + "id": "03f9857eb6b916787a9dfd9fa589fbbc", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "sabine.heldt07@mail.com", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 6 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: E-mail: sabine.heldt05@mail.com Email: sabine.heldt06@mail.com", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 222.1, + 125.67613, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "Email: sabine.heldt06@mail.com e-mail: ", + "textAfter": " E-mail address: sabine.heldt08@mail.com", + "startOffset": 12087, + "endOffset": 12110, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "c098ffa734126c4967a0c15a235d2bbf", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Hanke Mendel", + "reason": "Published Information found in section", + "matchedRule": "CBI.7.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 4, + 1 + ], + "closestHeadline": "CBI.7.0: Do not redact Names if published informations found in Section (without tables) ", + "section": "Paragraph: The following authors involved", + "color": null, + "positions": [ + { + "rectangle": [ + 209.45203, + 522.1, + 70.920044, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "Häusler (Weyland-Yutani Corporation), ", + "textAfter": " (Pixar) and Ranya", + "startOffset": 2003, + "endOffset": 2015, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "6cac11e690be60501e7c4dbb98676a61" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "f3934f2c883ee41ef22929d8905bd5de", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "sabine.heldt05@mail.com", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 6 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: E-mail: sabine.heldt05@mail.com Email: sabine.heldt06@mail.com", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 249.70004, + 125.67613, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "E-mail: ", + "textAfter": " Email: sabine.heldt06@mail.com e-mail:", + "startOffset": 12024, + "endOffset": 12047, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "25fd7eaa5ae5cc2a873fa8a7a640e30a", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "luthor.lex3@mail.com", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 417.6, + 107.67616, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "Email: luthor.lex2@mail.com e-mail: ", + "textAfter": " E-mail address: luthor.lex4@mail.com", + "startOffset": 9854, + "endOffset": 9874, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "79fca5c7e5cdf7cc7b6a08e29f7073dd", + "type": "published_information", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Excludus Daily", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 6, + 1, + 3 + ], + "closestHeadline": "CBI.7.1: Do not redact Names if published informations found in Section (with tables) ", + "section": "Table_cell: Excludus Daily", + "color": null, + "positions": [ + { + "rectangle": [ + 86.388, + 285.6, + 64.879486, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 2751, + "endOffset": 2765, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 14 + }, + { + "id": "6783524dbe7aaecde05eb5586c5d7675", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Miss Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 615.1, + 55.572, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13318, + "endOffset": 13329, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "85e9dbb27c9e5f783c7cb139c7bf2784", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Sir. Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 532.3, + 48.57598, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13497, + "endOffset": 13508, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "878d881240df6899c1c7d5d910e21ebf", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Leon", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 29, + 2 + ], + "closestHeadline": "PII.11.0: Redact On behalf of Sequani Ltd ", + "section": "Paragraph: On behalf of Syngenta", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 147.1, + 24.600002, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "Ltd.: Name: Title ", + "textAfter": " Musk Manager", + "startOffset": 13184, + "endOffset": 13188, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 20 + }, + { + "id": "dd0f46c6432760d8c3091c117da705cf", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Max, G.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 39, + 1, + 0 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Paragraph: Manuel, S., Ashley B.,", + "color": null, + "positions": [ + { + "rectangle": [ + 348.40015, + 548.2, + 39.68399, + 12.642 + ], + "pageNumber": 17 + } + ], + "textBefore": "Valeriya, D., and ", + "textAfter": ", but with", + "startOffset": 15602, + "endOffset": 15609, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "f0313ed447054e71064f94047d309938", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Alley", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 1 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Name: Nelman Ozbarn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 232.792, + 580.9, + 26.592026, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "Address: No. 8, ", + "textAfter": " 27 Lane 119", + "startOffset": 10636, + "endOffset": 10641, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "4ba0e5ca47d645641f0828ba1d8eecc7", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "3 Chome Takaidahondori, Higashiosaka, Osaka 577-0066, Japan", + "reason": "Published Information found in row", + "matchedRule": "CBI.7.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 7, + 2, + 0, + 4 + ], + "closestHeadline": "CBI.7.1: Do not redact Addresses if published informations found in Section (with tables) ", + "section": "Table_cell: 38-44 Av. Gaston Diderich,", + "color": null, + "positions": [ + { + "rectangle": [ + 415.5839, + 136.59999, + 38.11499, + 11.81175 + ], + "pageNumber": 2 + }, + { + "rectangle": [ + 171.9, + 124.500015, + 230.8424, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "Belair Luxembourg and ", + "textAfter": "", + "startOffset": 3189, + "endOffset": 3248, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "c4581d4469f2ec32d0c28deebd61fdfa" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 26 + }, + { + "id": "39bcd7e909b18e27d2be2cce7553e18e", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Redact beween contact and T/el", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 8 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Contact: Redact beween contact", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 139.30002, + 152.97615, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "Contact: ", + "textAfter": " Tel", + "startOffset": 12195, + "endOffset": 12225, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 11 + }, + { + "id": "7a88994e30633c6abb1701819c3263cf", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Class", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 11, + 2, + 0, + 8 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (1) ", + "section": "Table_cell: Rainbow Class", + "color": null, + "positions": [ + { + "rectangle": [ + 129.284, + 502.6, + 25.956009, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "Rainbow ", + "textAfter": "", + "startOffset": 5807, + "endOffset": 5812, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 12 + }, + { + "id": "1eb73b46f7408101b5647d3309363974", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "sabine.heldt03@mail.com", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 7 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: E-mail: sabine.heldt01@mail.com Email: sabine.heldt02@mail.com", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 208.30002, + 125.67613, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "Email: sabine.heldt02@mail.com e-mail: ", + "textAfter": " E-mail address: sabine.heldt04@mail.com", + "startOffset": 11171, + "endOffset": 11194, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "9ece39ea157e8db8ff408589ec8f3e9a", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "William, B.", + "reason": "Author found", + "matchedRule": "CBI.9.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 9, + 2, + 0, + 21 + ], + "closestHeadline": "CBI.9.1/10.1: Redact all cells with Header Author as CBI Author ", + "section": "Table_cell: William, B.", + "color": null, + "positions": [ + { + "rectangle": [ + 140.4, + 365.3, + 48.887985, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 4365, + "endOffset": 4376, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 51 + }, + { + "id": "6229d9ef4af35f66ade478e4ef7de1b3", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Desiree", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 11, + 1, + 1 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (1) ", + "section": "Paragraph: The idea of this", + "color": null, + "positions": [ + { + "rectangle": [ + 150.47198, + 611.4, + 36.587997, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "from 1922 (", + "textAfter": " et al 1914).", + "startOffset": 5441, + "endOffset": 5448, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "0a5ecd732b550846e0103dbec1ad7383", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 (331) 441 551 12", + "reason": "Telephone number found by regex", + "matchedRule": "PII.3.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 21, + 2 + ], + "closestHeadline": "PII.3.0/1: Redact telephone numbers by RegEx ", + "section": "Paragraph: The phone number of", + "color": null, + "positions": [ + { + "rectangle": [ + 231.364, + 423.9, + 104.78398, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "551 11 and ", + "textAfter": ". For further", + "startOffset": 9165, + "endOffset": 9185, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "4ba61d6fb875cc6fdc998fceb215bc1b", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 27", + "reason": "Found between contact keywords", + "matchedRule": "PII.6.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 24, + 3 + ], + "closestHeadline": "PII.6.0/1: Redact line between contact keywords ", + "section": "Paragraph: Contact: 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 126.600006, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "Contact: ", + "textAfter": " Tel 0049 331", + "startOffset": 10385, + "endOffset": 10404, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "4d54ac896ad7222633240ccfe1287dca", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 38", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 3 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Fax number: +49 331", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 442.9, + 96.79198, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "Fax number: ", + "textAfter": " Fax: +49 331", + "startOffset": 11735, + "endOffset": 11753, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "ded671a2e88f2b38c4db9717fbd18996", + "type": "published_information", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Daily Medical", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 18, + 1, + 2 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Paragraph: Possible incidents with the", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 501.0, + 68.90399, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "Christine Henri of ", + "textAfter": ".", + "startOffset": 7866, + "endOffset": 7879, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "d678a9b61c0a4680aae51637f6fad385", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "1144 Main St, Los Angeles, CA 90015, USA", + "reason": "Published Information found in section", + "matchedRule": "CBI.7.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 5, + 2 + ], + "closestHeadline": "CBI.7.0: Do not redact Addresses if published informations found in Section (without tables) ", + "section": "Paragraph: According to the medical", + "color": null, + "positions": [ + { + "rectangle": [ + 92.8, + 411.9, + 215.50801, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "distribution points: • ", + "textAfter": " • Charrúa 1796,", + "startOffset": 2371, + "endOffset": 2411, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "f6c21a30428152468076c7e1d3876d18" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "44be8a8c98a100c9fb0baeca3c9fa67c", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331-441 551 11", + "reason": "Telephone number found by regex", + "matchedRule": "PII.3.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 21, + 2 + ], + "closestHeadline": "PII.3.0/1: Redact telephone numbers by RegEx ", + "section": "Paragraph: The phone number of", + "color": null, + "positions": [ + { + "rectangle": [ + 110.77599, + 423.9, + 97.284004, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "this project are ", + "textAfter": " and +49 (331)", + "startOffset": 9142, + "endOffset": 9160, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "e0bdb972700f3686f7c4e7c2f23ce22f", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 33", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 6 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Telephone number: +49 331", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 318.7, + 96.79198, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "Telephone number: ", + "textAfter": " Telephone No: +49", + "startOffset": 10963, + "endOffset": 10981, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "e2c737951cc2eb0902f9448ecdbd0898", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Smith", + "reason": "Author(s) found", + "matchedRule": "CBI.9.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 10, + 2, + 0, + 11 + ], + "closestHeadline": "CBI.11: Recommend all CBI Authors entities in Table with Vertebrate Study Y/N Header ", + "section": "Table_cell: Smith", + "color": null, + "positions": [ + { + "rectangle": [ + 170.3, + 238.20003, + 25.031967, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 4692, + "endOffset": 4697, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "DICTIONARY", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 68 + }, + { + "id": "5628aeeedbc45a2919d49c8d4d765c8b", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441551-13", + "reason": "Telephone number found by regex", + "matchedRule": "PII.3.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 21, + 2 + ], + "closestHeadline": "PII.3.0/1: Redact telephone numbers by RegEx ", + "section": "Paragraph: The phone number of", + "color": null, + "positions": [ + { + "rectangle": [ + 519.3761, + 423.9, + 18.791992, + 12.642 + ], + "pageNumber": 7 + }, + { + "rectangle": [ + 56.8, + 410.1, + 72.996, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "questions, please contact ", + "textAfter": ".", + "startOffset": 9225, + "endOffset": 9242, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "117ba401015046965688c46969867cba", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 2 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Lorem ipsum dolor Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 445.21625, + 395.9, + 32.68805, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "12% adipiscing elit, ", + "textAfter": " 22 % sed", + "startOffset": 14663, + "endOffset": 14670, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "2f583e821e49d7c4d73c80e85b7684c0", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Ashley", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 39, + 1, + 0 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Paragraph: Manuel, S., Ashley B.,", + "color": null, + "positions": [ + { + "rectangle": [ + 114.472, + 548.2, + 33.90001, + 12.642 + ], + "pageNumber": 17 + } + ], + "textBefore": "Manuel, S., ", + "textAfter": " B., in cooperation", + "startOffset": 15553, + "endOffset": 15559, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "81a065664438bf0d1741f389fe7e317b", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Daniela, B.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 41, + 2, + 8 + ], + "closestHeadline": "Manual Redaction Test ", + "section": "Paragraph: Lorem ipsum Sophia, E.", + "color": null, + "positions": [ + { + "rectangle": [ + 124.15599, + 365.2, + 54.276016, + 12.642 + ], + "pageNumber": 18 + } + ], + "textBefore": "E. Lorem ipsum ", + "textAfter": "", + "startOffset": 17523, + "endOffset": 17534, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "8c1826d367627cedf9e96d00ee68b001", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Osborn", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 1 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Name: Norman Osborn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 243.17201, + 594.7, + 35.292007, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "Name: Norman ", + "textAfter": " Address: No. 7,", + "startOffset": 11510, + "endOffset": 11516, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "e13c8551c3a2104338c88e54c4d13439", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 2", + "reason": "Found by Phone and Fax Regex", + "matchedRule": "PII.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 20, + 2 + ], + "closestHeadline": "PII.2.0/1: Redact Phone and Fax by RegEx ", + "section": "Paragraph: Contact 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 75.484, + 610.8, + 96.00001, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "551 1 Ph. ", + "textAfter": " Fax 0049 331", + "startOffset": 8644, + "endOffset": 8662, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "e36bbb486b627cbefc52aa1854e5a3c7", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "BECH", + "reason": "Personal information found", + "matchedRule": "PII.10.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 28, + 1, + 1 + ], + "closestHeadline": "PII.10.0: Redact study director abbreviation ", + "section": "Paragraph: The study was submitted", + "color": null, + "positions": [ + { + "rectangle": [ + 375.26822, + 433.1, + 31.94403, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "under the abbreviation ", + "textAfter": "7612-0. A review", + "startOffset": 12722, + "endOffset": 12726, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "5f243b88c68b7f06a4a79258da41eb53", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 602.9, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "should be Hint ", + "textAfter": " 99.9% ← should", + "startOffset": 13930, + "endOffset": 13937, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "a2cbd3720a0bc3188534c6f99dfbe9d7", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 29", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 3 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Fax number: +49 331", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 442.9, + 96.79198, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "Fax number: ", + "textAfter": " Fax: +49 331", + "startOffset": 10817, + "endOffset": 10835, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "f9e0bb100b66369f1e88c6375d1556ca", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Allan Smith", + "reason": "Found after \"Contact point:\" contact keyword", + "matchedRule": "PII.5.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 23, + 2 + ], + "closestHeadline": "PII.5.0/1: Redact line after contact information keywords reduced ", + "section": "Paragraph: Contact point: Allan Smith", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 299.7, + 58.260086, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "Contact point: ", + "textAfter": " Contact: Veronica Smith", + "startOffset": 10086, + "endOffset": 10097, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "ae92c5ec91aebbfa00d264c033be8d2c", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 25", + "reason": "Found between contact keywords", + "matchedRule": "PII.6.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 24, + 2 + ], + "closestHeadline": "PII.6.0/1: Redact line between contact keywords ", + "section": "Paragraph: No: 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 168.00003, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "No: ", + "textAfter": " Fax: 0049 331", + "startOffset": 10331, + "endOffset": 10350, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "4bb024e9da337d64a5d4b2630f02f3d0", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Coleman Charles", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 1, + 2 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Paragraph: Authors Kara Hunt and", + "color": null, + "positions": [ + { + "rectangle": [ + 179.45201, + 493.4, + 82.84804, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Ouroboros, supported by ", + "textAfter": " and Igarashi Akitaka.", + "startOffset": 347, + "endOffset": 362, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "bae41fa309d225213410b7b2c4ac6297", + "type": "published_information", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Daily Research", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 6, + 1, + 6 + ], + "closestHeadline": "CBI.7.1: Do not redact Names if published informations found in Section (with tables) ", + "section": "Table_cell: Daily Research", + "color": null, + "positions": [ + { + "rectangle": [ + 85.4, + 267.90005, + 64.30204, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 2821, + "endOffset": 2835, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 17 + }, + { + "id": "19be0d663ca50fecf9bd6326dd7f2f0b", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "luthor.lex2@mail.com", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 431.4, + 107.67616, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "E-mail: luthor.lex1@mail.com Email: ", + "textAfter": " e-mail: luthor.lex3@mail.com E-mail", + "startOffset": 9825, + "endOffset": 9845, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "1d55532f98a0f7f59e0d6ab309895219", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Belkov", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 11, + 3, + 0 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (1) ", + "section": "Paragraph: The tests by Belkov", + "color": null, + "positions": [ + { + "rectangle": [ + 117.771996, + 458.4, + 34.596, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "The tests by ", + "textAfter": " were successful, but", + "startOffset": 5875, + "endOffset": 5881, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 16 + }, + { + "id": "884e52cf2853eb5d4dd4eae335590fd9", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Lex Luthor", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 624.6, + 54.276047, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "point: LexCo Contact: ", + "textAfter": " European contact: Carrol", + "startOffset": 9425, + "endOffset": 9435, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "318dad0671c17f85864b411c7573ef94", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 28", + "reason": "Found by Phone and Fax Regex", + "matchedRule": "PII.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 24, + 3 + ], + "closestHeadline": "PII.6.0/1: Redact line between contact keywords ", + "section": "Paragraph: Contact: 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 112.80002, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "551 27 Tel ", + "textAfter": "", + "startOffset": 10409, + "endOffset": 10428, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "7ef07660ef86597296aa3328026302cd", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Sminko", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 12, + 2 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (2) ", + "section": "Paragraph: Thanks to the persons", + "color": null, + "positions": [ + { + "rectangle": [ + 403.8042, + 367.5, + 37.284027, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "methods of Belkov, ", + "textAfter": " the effectiveness of", + "startOffset": 6138, + "endOffset": 6144, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 19 + }, + { + "id": "09bc37cc96f6632f45cbe29e90032af6", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Umbrella Corporation", + "reason": "PERFORMING LABORATORY was found for non vertebrate study", + "matchedRule": "CBI.20.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 17, + 1 + ], + "closestHeadline": "CBI.20.0/1: If \"Performing Lab\" and \"Lab Project ID\", then Redact everything between ", + "section": "Paragraph: Skip when Vertebrate Study", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 226.50002, + 92.87242, + 11.81175 + ], + "pageNumber": 5 + } + ], + "textBefore": "_ PERFORMING LABORATORY: ", + "textAfter": " LABORATORY PROJECT ID:", + "startOffset": 7301, + "endOffset": 7321, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 14 + }, + { + "id": "e5c10b2507128a1b6aae55e5a324f5d5", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "BECH", + "reason": "Personal information found", + "matchedRule": "PII.10.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 28, + 1, + 1 + ], + "closestHeadline": "PII.10.0: Redact study director abbreviation ", + "section": "Paragraph: The study was submitted", + "color": null, + "positions": [ + { + "rectangle": [ + 327.68814, + 405.5, + 31.94403, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "with the abbreviation ", + "textAfter": "2121.", + "startOffset": 12904, + "endOffset": 12908, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "4e3ebd917edd0209ea677b7bc2448a49", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 437.3, + 32.003994, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "because case sensitive ", + "textAfter": " <99% ← not", + "startOffset": 14515, + "endOffset": 14522, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "652fcba39d603a36e08bd8bf2948c939", + "type": "CBI_address", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Umbrella Corporation", + "reason": "PERFORMING LABORATORY was found for non vertebrate study", + "matchedRule": "CBI.20.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 9, + 2, + 0, + 24 + ], + "closestHeadline": "CBI.9.1/10.1: Redact all cells with Header Author as CBI Author ", + "section": "Table_cell: Umbrella Corporation", + "color": null, + "positions": [ + { + "rectangle": [ + 459.0, + 365.3, + 92.87256, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 4404, + "endOffset": 4424, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 54 + }, + { + "id": "6a53033a1fd4524f4746ef2dc52c5a6c", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Madame. Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 518.5, + 77.19601, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13527, + "endOffset": 13541, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "2a0124072827ec4c992827f68d319ff8", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 17", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 555.6, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "551 16 Tel: ", + "textAfter": " Telephone number: 0049", + "startOffset": 9552, + "endOffset": 9571, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "62e8e13649849b7f3338fb914487cf34", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Michelle Carge", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 2 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Alternative contact: Sonja Nier", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 470.5, + 74.08806, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "Nier European contact: ", + "textAfter": "", + "startOffset": 10790, + "endOffset": 10804, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "bbd5f61404f24a9674284c1c0b5231cc", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 26", + "reason": "Found after \"Fax:\" contact keyword", + "matchedRule": "PII.4.2", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 24, + 2 + ], + "closestHeadline": "PII.6.0/1: Redact line between contact keywords ", + "section": "Paragraph: No: 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 154.20004, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "551 25 Fax: ", + "textAfter": "", + "startOffset": 10356, + "endOffset": 10375, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "44cdb6a3c9c04fa9fe538922a9aaec50", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 41", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 5 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Tel.: +49 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 346.3, + 96.79198, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "551 40 Tel: ", + "textAfter": " Telephone number: +49", + "startOffset": 11842, + "endOffset": 11860, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "005846a21a806e395ed9fa4c34539b99", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Lesdo Industries, Chäppelisträssli, 6078 Lungern, Switzerland", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 1, + 1 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Paragraph: Warnsveld, 7232 CX Warnsveld,", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 282.8, + 299.07617, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Saint-Satur, France, FR ", + "textAfter": " Shlissel'burgskaya Ulitsa, Nizhny", + "startOffset": 815, + "endOffset": 876, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 15 + }, + { + "id": "fb113db7c1d81b86f42ddf75f5e08949", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "David Ksenia", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 1, + 1 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Paragraph: David Ksenia Max Mustermann", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 576.2, + 65.591995, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "", + "textAfter": " Max Mustermann Ranya", + "startOffset": 169, + "endOffset": 181, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "f438c3153fa4b0b55698bc215f44b3c1", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "purity", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 2 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Lorem ipsum dolor Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 100.47999, + 382.1, + 28.596, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "sed do eiusmod ", + "textAfter": " 32% tempor incididunt", + "startOffset": 14691, + "endOffset": 14697, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "7346fc1caa1e2034c44a522b18c6a120", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Carter Stein", + "reason": "Author(s) found", + "matchedRule": "CBI.9.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 10, + 2, + 0, + 6 + ], + "closestHeadline": "CBI.11: Recommend all CBI Authors entities in Table with Vertebrate Study Y/N Header ", + "section": "Table_cell: Carter Stein", + "color": null, + "positions": [ + { + "rectangle": [ + 157.6, + 255.90004, + 50.410522, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 4654, + "endOffset": 4666, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 63 + }, + { + "id": "138b212168c16876d9033b75e40bcf7e", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 16", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 569.4, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "551 15 Tel.: ", + "textAfter": " Tel: 0049 331", + "startOffset": 9527, + "endOffset": 9546, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "518c392d235a5baf3d0491749068dc47", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Judith Mosley", + "reason": "Published Information found in row", + "matchedRule": "CBI.7.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 6, + 1, + 7 + ], + "closestHeadline": "CBI.7.1: Do not redact Names if published informations found in Section (with tables) ", + "section": "Table_cell: • • • Mike", + "color": null, + "positions": [ + { + "rectangle": [ + 292.4, + 255.8, + 59.692535, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "• Mike Herrera ", + "textAfter": " Woody Holland", + "startOffset": 2855, + "endOffset": 2868, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "bae41fa309d225213410b7b2c4ac6297" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 18 + }, + { + "id": "0c0164dfea2be886475482930b403de5", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Warnsveld, 7232 CX Warnsveld, Netherlands, NL", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 1, + 1 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Paragraph: Warnsveld, 7232 CX Warnsveld,", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 324.2, + 240.45601, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "", + "textAfter": " Institut Industries, 33", + "startOffset": 647, + "endOffset": 692, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 15 + }, + { + "id": "ed2f69f3227bcfca353c90b54fb618c2", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Richard", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 40, + 2 + ], + "closestHeadline": "AI.1.0: Combine and add NER Entities as CBI_address ", + "section": "Paragraph: Stoßberger Ltd Katakawa Limited", + "color": null, + "positions": [ + { + "rectangle": [ + 89.465485, + 294.5, + 36.203987, + 11.859 + ], + "pageNumber": 17 + } + ], + "textBefore": "Katakawa Limited Daniel ", + "textAfter": " Chanchen Mimi Mehlburgstr.", + "startOffset": 16122, + "endOffset": 16129, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 14 + }, + { + "id": "3b270fe14a7850d907ed5ea3b604e463", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 23", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 472.8, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "22 Fax number: ", + "textAfter": " Fax: 0049 331", + "startOffset": 9744, + "endOffset": 9763, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "5c0ee1942517fa0f8b7862eeb720a7fe", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Michael N.", + "reason": "Author(s) found", + "matchedRule": "CBI.9.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 8, + 2, + 0, + 6 + ], + "closestHeadline": "CBI.9.0/10.0: Redact all cells with Header Author(s) as CBI Author ", + "section": "Table_cell: Michael N.", + "color": null, + "positions": [ + { + "rectangle": [ + 141.2, + 619.4, + 47.197525, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 3585, + "endOffset": 3595, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "e146e7ed044a09e380a73092e37d6eea", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Sonnenschein", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 32, + 1 + ], + "closestHeadline": "ETC.2.0: Redact Signatures ", + "section": "Paragraph: __________________________ Signed by: Dilara", + "color": null, + "positions": [ + { + "rectangle": [ + 144.448, + 602.9, + 66.576004, + 12.642 + ], + "pageNumber": 14 + } + ], + "textBefore": "Signed by: Dilara ", + "textAfter": "", + "startOffset": 14850, + "endOffset": 14862, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "3ecc89210fd94af25dc9abfe4e6d1b9c", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Daniel", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 40, + 2 + ], + "closestHeadline": "AI.1.0: Combine and add NER Entities as CBI_address ", + "section": "Paragraph: Stoßberger Ltd Katakawa Limited", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 294.5, + 29.798985, + 11.859 + ], + "pageNumber": 17 + } + ], + "textBefore": "Ltd Katakawa Limited ", + "textAfter": " Richard Chanchen Mimi", + "startOffset": 16115, + "endOffset": 16121, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 14 + }, + { + "id": "dd6f5d53ef523772bff67fa18db25a5f", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Class", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 11, + 2, + 0, + 4 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (1) ", + "section": "Table_cell: Toxicity Class", + "color": null, + "positions": [ + { + "rectangle": [ + 127.49198, + 535.7, + 25.943993, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "Toxicity ", + "textAfter": "", + "startOffset": 5748, + "endOffset": 5753, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "c709b175613dc44b439e53ae767f37e4", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Carina, M.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 39, + 1, + 0 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Paragraph: Manuel, S., Ashley B.,", + "color": null, + "positions": [ + { + "rectangle": [ + 269.40402, + 534.4, + 51.588043, + 12.642 + ], + "pageNumber": 17 + } + ], + "textBefore": "Asya. L., and ", + "textAfter": ", Alexandra, H.", + "startOffset": 15687, + "endOffset": 15697, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "1cc3da4ac6d290236f897277039a192d", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Alley", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 1 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Name: Norman Osborn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 232.792, + 580.9, + 26.592026, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "Address: No. 7, ", + "textAfter": " 26 Lane 118", + "startOffset": 11533, + "endOffset": 11538, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "d7641608a4deb82fed8b6c57ccf54e22", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Xinyi District", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 26, + 2, + 1 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Name: Norman Osborn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 257.968, + 553.3, + 66.27606, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "118 Wuxing St, ", + "textAfter": ", Taipei City", + "startOffset": 11562, + "endOffset": 11576, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "e5c0fd864f6b4d31003db1090fe5904d", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Carina Madsen", + "reason": "Published Information found in section", + "matchedRule": "CBI.7.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 4, + 1 + ], + "closestHeadline": "CBI.7.0: Do not redact Names if published informations found in Section (without tables) ", + "section": "Paragraph: The following authors involved", + "color": null, + "positions": [ + { + "rectangle": [ + 306.35205, + 535.9, + 72.87607, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "Lyon (Cyberdyne Systems), ", + "textAfter": " (InGen), Alexandra Häusler", + "startOffset": 1932, + "endOffset": 1945, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY", + "NER" + ], + "reference": [ + "6cac11e690be60501e7c4dbb98676a61" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "aed17872b01a30e019978a99fb1b3c69", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Naka-27 Aomachi, Nomi, Ishikawa 923-1101, Japan, JP", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 1, + 1 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Paragraph: Naka-27 Aomachi, Nomi, Ishikawa", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 625.2, + 269.41208, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "", + "textAfter": " Sude Halide Nurullah", + "startOffset": 7543, + "endOffset": 7594, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "cfd98f72326a6852fde9123e9ebd61f9", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Isaiah Hansen", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 1, + 2 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Paragraph: Authors Kara Hunt and", + "color": null, + "positions": [ + { + "rectangle": [ + 172.06001, + 507.2, + 67.57202, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Kara Hunt and ", + "textAfter": " have done a", + "startOffset": 254, + "endOffset": 267, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "988fd71e59d0ab874d6d225eaf53257e", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 533.9, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "because additional symbols ", + "textAfter": " aa 45% ←", + "startOffset": 14180, + "endOffset": 14187, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "762598d2638a0eb6a9257a59a5c5ce4b", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 644.3, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "should be Hint ", + "textAfter": " <45% ← should", + "startOffset": 13839, + "endOffset": 13846, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "eb205a4f72cf466ec1430cc5a9e1bc40", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 1", + "reason": "Found by Phone and Fax Regex", + "matchedRule": "PII.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 20, + 2 + ], + "closestHeadline": "PII.2.0/1: Redact Phone and Fax by RegEx ", + "section": "Paragraph: Contact 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 109.6, + 624.6, + 96.00001, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "551 0 Telephone ", + "textAfter": " Ph. 0049 331", + "startOffset": 8621, + "endOffset": 8639, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "2573ceb4d5445fce50c2805dc961b123", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Sminko", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 11, + 2, + 0, + 10 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (1) ", + "section": "Table_cell: Sminko et al. (1899)", + "color": null, + "positions": [ + { + "rectangle": [ + 319.1, + 502.6, + 37.284027, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "", + "textAfter": " et al. (1899)", + "startOffset": 5826, + "endOffset": 5832, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 14 + }, + { + "id": "251ab1e5a23b5014f0040048111bdc2c", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Julian, R.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 39, + 1, + 0 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Paragraph: Manuel, S., Ashley B.,", + "color": null, + "positions": [ + { + "rectangle": [ + 151.06, + 534.4, + 45.672012, + 12.642 + ], + "pageNumber": 17 + } + ], + "textBefore": "work together with ", + "textAfter": ", Asya. L.,", + "startOffset": 15661, + "endOffset": 15671, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "b13a5a37c78a6ca239137b69e6672859", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "CTL", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 41, + 1, + 2 + ], + "closestHeadline": "SYN.1.0: Redact addresses that start with BL or CTL ", + "section": "Paragraph: BL12345/B CTL/A/9876B NextLineLaboratoryC next", + "color": null, + "positions": [ + { + "rectangle": [ + 380.8, + 115.59996, + 22.656006, + 12.696 + ], + "pageNumber": 17 + } + ], + "textBefore": "BL12345/B ", + "textAfter": "/A/9876B NextLineLaboratoryC next", + "startOffset": 16538, + "endOffset": 16541, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 18 + }, + { + "id": "c39d477dcbc73f4d70cd85e3b044396e", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Carter", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 10, + 3, + 1 + ], + "closestHeadline": "CBI.11: Recommend all CBI Authors entities in Table with Vertebrate Study Y/N Header ", + "section": "Paragraph: Researcher Carter Stein was", + "color": null, + "positions": [ + { + "rectangle": [ + 113.08001, + 152.6, + 29.976006, + 12.642 + ], + "pageNumber": 3 + } + ], + "textBefore": "Researcher ", + "textAfter": " Stein was responsible", + "startOffset": 4879, + "endOffset": 4885, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 83 + }, + { + "id": "154ac992a2f3ec87ec671f210086c2ae", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 30", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 3 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Fax number: +49 331", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 429.1, + 96.79198, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "551 29 Fax: ", + "textAfter": "", + "startOffset": 10841, + "endOffset": 10859, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "40fe50e22e0300f262068d24e839eb2c", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 35", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 6 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Telephone number: +49 331", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 291.1, + 96.79198, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "551 34 Telephone: ", + "textAfter": " Phone No. +49", + "startOffset": 11026, + "endOffset": 11044, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "0c2d6a9cc83819610e592ee1a7e76c51", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Wayne, L.", + "reason": "Author found", + "matchedRule": "CBI.9.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 9, + 2, + 0, + 6 + ], + "closestHeadline": "CBI.9.1/10.1: Redact all cells with Header Author as CBI Author ", + "section": "Table_cell: Wayne, L.", + "color": null, + "positions": [ + { + "rectangle": [ + 143.2, + 418.3, + 43.20752, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 4132, + "endOffset": 4141, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 36 + }, + { + "id": "f10e1a9a49ae41c6563c51c4dabaa011", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Jun", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 19, + 2, + 0, + 4 + ], + "closestHeadline": "PII.1.0/1: Redact Emails by RegEx ", + "section": "Table_cell: Jun, Jiwoo", + "color": null, + "positions": [ + { + "rectangle": [ + 222.2, + 240.6, + 16.692001, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "", + "textAfter": ", Jiwoo", + "startOffset": 8365, + "endOffset": 8368, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 18 + }, + { + "id": "1348fa7b5929d772fb851121bc36e23d", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 506.3, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "should be Hint ", + "textAfter": " aa45% ← should", + "startOffset": 14275, + "endOffset": 14282, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "48a2c304a36dcf33294ddadd8887bfa1", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "KATH", + "reason": "Personal information found", + "matchedRule": "PII.10.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 28, + 1, + 1 + ], + "closestHeadline": "PII.10.0: Redact study director abbreviation ", + "section": "Paragraph: The study was submitted", + "color": null, + "positions": [ + { + "rectangle": [ + 269.63202, + 419.3, + 31.944, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "with the abbreviation ", + "textAfter": "6764, KML5058-12 and", + "startOffset": 12800, + "endOffset": 12804, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "f8380543628ff95144bbeaade51ee36d", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Sir . Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 449.5, + 52.283974, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13682, + "endOffset": 13694, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "19fa3d51f1297571c79948c2f97180b6", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 37", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 6 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Telephone number: +49 331", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 263.50003, + 96.79198, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "551 36 Phone: ", + "textAfter": "", + "startOffset": 11081, + "endOffset": 11099, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "509f0d6fa181aa08a9e2988b3d6b90eb", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 6", + "reason": "Found by Phone and Fax Regex", + "matchedRule": "PII.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 20, + 2 + ], + "closestHeadline": "PII.2.0/1: Redact Phone and Fax by RegEx ", + "section": "Paragraph: Contact 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 75.172, + 555.6, + 96.0, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "551 5 Fel ", + "textAfter": " Fer 0049 331", + "startOffset": 8748, + "endOffset": 8766, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "1382d2e04f65f867febb1b8f03f6a3c1", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 34", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 6 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Telephone number: +49 331", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 304.9, + 96.79198, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "33 Telephone No: ", + "textAfter": " Telephone: +49 331", + "startOffset": 10996, + "endOffset": 11014, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "22f6264168ead141552f3e36778d47d8", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Silver", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 14, + 2 + ], + "closestHeadline": "CBI.17.1: Add recommend. for Addresses in Test Organism sections, with colon ", + "section": "Paragraph: Recommend as CBI Address", + "color": null, + "positions": [ + { + "rectangle": [ + 328.64804, + 532.3, + 28.584045, + 12.642 + ], + "pageNumber": 5 + } + ], + "textBefore": "Species: Mouse; Source: ", + "textAfter": " Shamrock Novelties", + "startOffset": 6815, + "endOffset": 6821, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "dd0321b4e484e5060c05786117f03898", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "sabine.heldt01@mail.com", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 7 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: E-mail: sabine.heldt01@mail.com Email: sabine.heldt02@mail.com", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 235.90005, + 125.67613, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "E-mail: ", + "textAfter": " Email: sabine.heldt02@mail.com e-mail:", + "startOffset": 11108, + "endOffset": 11131, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "af5a57aad0adb2a6a736a3944a4ad750", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Sverdrups gate 26-24, 0560 Oslo, Norway", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 1, + 2 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Paragraph: The medicine is distributed", + "color": null, + "positions": [ + { + "rectangle": [ + 319.27612, + 241.40005, + 202.932, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "the following locations: ", + "textAfter": ", and Vector", + "startOffset": 1003, + "endOffset": 1042, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 16 + }, + { + "id": "077b8292e6cbd71177b89a14ea8d20b6", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 0", + "reason": "Found by Phone and Fax Regex", + "matchedRule": "PII.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 20, + 2 + ], + "closestHeadline": "PII.2.0/1: Redact Phone and Fax by RegEx ", + "section": "Paragraph: Contact 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 97.08399, + 638.4, + 95.99999, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "Contact ", + "textAfter": " Telephone 0049 331", + "startOffset": 8592, + "endOffset": 8610, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "75fe6af1507ad1670bcce8237b660618", + "type": "published_information", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Laboratorium", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 7, + 2, + 0, + 6 + ], + "closestHeadline": "CBI.7.1: Do not redact Addresses if published informations found in Section (with tables) ", + "section": "Table_cell: Laboratorium", + "color": null, + "positions": [ + { + "rectangle": [ + 66.1, + 106.8, + 57.71849, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 3253, + "endOffset": 3265, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 28 + }, + { + "id": "6cac11e690be60501e7c4dbb98676a61", + "type": "published_information", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Oxford University Press", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 4, + 1 + ], + "closestHeadline": "CBI.7.0: Do not redact Names if published informations found in Section (without tables) ", + "section": "Paragraph: The following authors involved", + "color": null, + "positions": [ + { + "rectangle": [ + 470.5722, + 549.7, + 34.679993, + 12.642 + ], + "pageNumber": 2 + }, + { + "rectangle": [ + 56.8, + 535.9, + 78.91199, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "been published by ", + "textAfter": ": Asya Lyon", + "startOffset": 1876, + "endOffset": 1899, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "b81b352569549190d2bd19c2719761dc", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 43", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 5 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Tel.: +49 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 318.7, + 96.79198, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "42 Telephone No: ", + "textAfter": " Telephone: +49 331", + "startOffset": 11912, + "endOffset": 11930, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "8c2287c77265b5c0b3f2cefd41ae15b8", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Tyler Durden", + "reason": "Found after \"European contact:\" contact keyword", + "matchedRule": "PII.5.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 23, + 2 + ], + "closestHeadline": "PII.5.0/1: Redact line after contact information keywords reduced ", + "section": "Paragraph: Contact point: Allan Smith", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 258.30002, + 64.10405, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "Stagg European contact: ", + "textAfter": "", + "startOffset": 10173, + "endOffset": 10185, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "acbf18fe1ca5aaf71c361cda2d056a50", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Ms. Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 546.1, + 50.57998, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13468, + "endOffset": 13478, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "f61a53d9d7a109bb003460028fcf93c1", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Desiree", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 11, + 1, + 1 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (1) ", + "section": "Paragraph: The idea of this", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 583.8, + 36.600002, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "pioneers of science ", + "textAfter": " and Melanie, it", + "startOffset": 5619, + "endOffset": 5626, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "854691e9de4ff6c757aa4431ccf3dad2", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "B. Rahim", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 1, + 1 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Paragraph: Naka-27 Aomachi, Nomi, Ishikawa", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 583.8, + 45.99599, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "Özgür U. Reyhan ", + "textAfter": " C. J. Alfred", + "startOffset": 7632, + "endOffset": 7640, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "04d7f467d5e9bb4e561005e53465896a", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Wilson Fisk", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 2 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Alternative contact: Maximilion Pegasus", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 470.5, + 57.864, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "Pegasus European contact: ", + "textAfter": "", + "startOffset": 11711, + "endOffset": 11722, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "ec73111d4ad9d30aa72a59603bca8931", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 39", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 3 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Fax number: +49 331", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 429.1, + 96.79198, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "551 38 Fax: ", + "textAfter": "", + "startOffset": 11759, + "endOffset": 11777, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "eee3911fc15ba3a112a301037fcf9980", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "IGNORED", + "value": "Peoples", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 37, + 0 + ], + "closestHeadline": "Images: Peoples and Faces ", + "section": "Headline: Images: Peoples and Faces", + "color": null, + "positions": [ + { + "rectangle": [ + 114.5, + 339.1, + 55.16638, + 14.0352 + ], + "pageNumber": 16 + } + ], + "textBefore": "Images: ", + "textAfter": " and Faces", + "startOffset": 15108, + "endOffset": 15115, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + }, + { + "analysisNumber": 3, + "type": "REMOVED", + "dateTime": "2024-06-21T11:08:22.709757Z" + } + ], + "manualChanges": [ + { + "manualRedactionType": "REMOVE", + "processedDate": null, + "requestedDate": "2024-06-21T11:08:22.709757Z", + "userId": "d1ba7dca-9edc-4ba0-8bcd-5a4d41469d96", + "propertyChanges": {}, + "processed": false + } + ], + "engines": [ + "DICTIONARY", + "MANUAL" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "75fb0aea304e121f87edd1a243dfa0a9", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "993-222", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 4 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: No: 993-222 Contact: Sabine", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 401.5, + 39.996002, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "No: ", + "textAfter": " Contact: Sabine Heldt", + "startOffset": 11782, + "endOffset": 11789, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 7 + }, + { + "id": "de91625c25ee67a82d33296ea193b67d", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Sebastian Shaw", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 1 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Name: Norman Osborn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 511.90002, + 75.62401, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "Tom Cavanagh Contact: ", + "textAfter": "", + "startOffset": 11638, + "endOffset": 11652, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "c2d580a81ad73f2ee5fec0071437eee0", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 2 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Lorem ipsum dolor Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 152.452, + 395.9, + 32.604004, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "Lorem ipsum dolor ", + "textAfter": " 33% sit amet,", + "startOffset": 14601, + "endOffset": 14608, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "79a009f87f395b5ad05e12e8f836ba0d", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Charrúa 1796, 11200 Montevideo, Departamento de Montevideo, Uruguay", + "reason": "Published Information found in section", + "matchedRule": "CBI.7.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 5, + 2 + ], + "closestHeadline": "CBI.7.0: Do not redact Addresses if published informations found in Section (without tables) ", + "section": "Paragraph: According to the medical", + "color": null, + "positions": [ + { + "rectangle": [ + 92.8, + 398.1, + 359.4002, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "90015, USA • ", + "textAfter": " • Loc. 103,", + "startOffset": 2414, + "endOffset": 2481, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "f6c21a30428152468076c7e1d3876d18" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "88b5565ec9a58cdea94068eaa39e6e88", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Kara Hunt", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 1, + 2 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Paragraph: Authors Kara Hunt and", + "color": null, + "positions": [ + { + "rectangle": [ + 98.476, + 507.2, + 50.304016, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Authors ", + "textAfter": " and Isaiah Hansen", + "startOffset": 240, + "endOffset": 249, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "0ddb0154f648306376f55fbd96c71462", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "dinther@comcast.net", + "reason": "Found by Email Regex", + "matchedRule": "PII.1.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 19, + 1, + 1 + ], + "closestHeadline": "PII.1.0/1: Redact Emails by RegEx ", + "section": "Paragraph: The email addresses for", + "color": null, + "positions": [ + { + "rectangle": [ + 343.39612, + 316.3, + 101.904144, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "questions, please contact ", + "textAfter": ". For general", + "startOffset": 8258, + "endOffset": 8277, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 13 + }, + { + "id": "31087c238b4b5bfff13c53b88553526a", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Keith Arving", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 2, + 0, + 5 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Table_cell: • • John Clemens", + "color": null, + "positions": [ + { + "rectangle": [ + 382.1, + 417.0, + 54.998962, + 11.81175 + ], + "pageNumber": 1 + } + ], + "textBefore": "• John Clemens ", + "textAfter": "", + "startOffset": 496, + "endOffset": 508, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 12 + }, + { + "id": "72ef0982b4e177a072433c9accf877b6", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Vector Pixel, Gert-Magnus-Platz 3, 68163 Mannheim, Germany", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 1, + 2 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Paragraph: The medicine is distributed", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 227.6, + 307.47614, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Oslo, Norway, and ", + "textAfter": ". Further locations", + "startOffset": 1048, + "endOffset": 1106, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 16 + }, + { + "id": "cac9e6c9408c2654543b56ef1e307368", + "type": "CBI_address", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "BL12345/A LaboratoryA", + "reason": "", + "matchedRule": "SYN.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 41, + 1, + 1 + ], + "closestHeadline": "SYN.1.0: Redact addresses that start with BL or CTL ", + "section": "Paragraph: Lorem condimentum BL12345/A LaboratoryA", + "color": null, + "positions": [ + { + "rectangle": [ + 169.44397, + 184.59996, + 127.22394, + 12.696 + ], + "pageNumber": 17 + } + ], + "textBefore": "Lorem condimentum ", + "textAfter": " venenatis a condimentum", + "startOffset": 16313, + "endOffset": 16334, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 17 + }, + { + "id": "f04bf0d7e3b228a55a4228f302a86173", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 616.7, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "should be Hint ", + "textAfter": " 99,9% ← should", + "startOffset": 13899, + "endOffset": 13906, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "ec67ec38328fc4386fae814afa0f3881", + "type": "published_information", + "entryType": "HINT", + "state": "SKIPPED", + "value": "GreenForce", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 164.8, + 423.5, + 56.591995, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "case sensitive Supplier: ", + "textAfter": "", + "startOffset": 14572, + "endOffset": 14582, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "630686052623f55d1f95cae4930f31d1", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "sabine.heldt08@mail.com", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 6 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: E-mail: sabine.heldt05@mail.com Email: sabine.heldt06@mail.com", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 208.30002, + 125.67613, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "sabine.heldt07@mail.com E-mail address: ", + "textAfter": "", + "startOffset": 12127, + "endOffset": 12150, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "2387230c55e275a644491bbcf9ded100", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 5", + "reason": "Found by Phone and Fax Regex", + "matchedRule": "PII.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 20, + 2 + ], + "closestHeadline": "PII.2.0/1: Redact Phone and Fax by RegEx ", + "section": "Paragraph: Contact 0049 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 94.479996, + 569.4, + 96.0, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "551 4 Mobile ", + "textAfter": " Fel 0049 331", + "startOffset": 8725, + "endOffset": 8743, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "18500592ec60f19b794952625d9ddafd", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Morpheus Duvall", + "reason": "Author(s) found", + "matchedRule": "CBI.9.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 10, + 3, + 1 + ], + "closestHeadline": "CBI.11: Recommend all CBI Authors entities in Table with Vertebrate Study Y/N Header ", + "section": "Paragraph: Researcher Carter Stein was", + "color": null, + "positions": [ + { + "rectangle": [ + 430.01224, + 136.70004, + 84.20401, + 12.642 + ], + "pageNumber": 3 + } + ], + "textBefore": "carried out by ", + "textAfter": " with success.", + "startOffset": 5047, + "endOffset": 5062, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 83 + }, + { + "id": "9b6c916123cdfca0cfc5d52ff94f3bf0", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "David Chubb Research Director Ivan Musk, Msc Bioanalysis Tom Scrott Team Leader", + "reason": "On behalf of Sequani Ltd.: Name Title was found", + "matchedRule": "PII.11.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 29, + 1 + ], + "closestHeadline": "PII.11.0: Redact On behalf of Sequani Ltd ", + "section": "Paragraph: On behalf of Sequani", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 229.90005, + 64.368, + 12.642 + ], + "pageNumber": 11 + }, + { + "rectangle": [ + 236.8, + 229.90005, + 86.86812, + 12.642 + ], + "pageNumber": 11 + }, + { + "rectangle": [ + 56.8, + 216.1, + 78.276, + 12.642 + ], + "pageNumber": 11 + }, + { + "rectangle": [ + 236.8, + 216.1, + 55.944077, + 12.642 + ], + "pageNumber": 11 + }, + { + "rectangle": [ + 56.8, + 202.30002, + 53.49599, + 12.642 + ], + "pageNumber": 11 + }, + { + "rectangle": [ + 236.8, + 202.30002, + 62.784103, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "Ltd.: Name Title ", + "textAfter": "", + "startOffset": 13064, + "endOffset": 13143, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 19 + }, + { + "id": "baecea659cf0ab81bd872feb41239b31", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "John Clemens", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 2, + 0, + 5 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Table_cell: • • John Clemens", + "color": null, + "positions": [ + { + "rectangle": [ + 380.1, + 429.1, + 59.135986, + 11.81175 + ], + "pageNumber": 1 + } + ], + "textBefore": "• • ", + "textAfter": " Keith Arving", + "startOffset": 483, + "endOffset": 495, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 12 + }, + { + "id": "9ddb4353f047fe194f52899ff232bee8", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "KML", + "reason": "Personal information found", + "matchedRule": "PII.10.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 28, + 2, + 0, + 7 + ], + "closestHeadline": "PII.10.0: Redact study director abbreviation ", + "section": "Table_cell: KML1212", + "color": null, + "positions": [ + { + "rectangle": [ + 369.8, + 330.9, + 26.699982, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "", + "textAfter": "1212", + "startOffset": 12976, + "endOffset": 12979, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 17 + }, + { + "id": "bc3836516642778f4a20282bf10f1490", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "38-44 Av. Gaston Diderich, 1420 Belair Luxembourg", + "reason": "Published Information found in row", + "matchedRule": "CBI.7.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 7, + 2, + 0, + 4 + ], + "closestHeadline": "CBI.7.1: Do not redact Addresses if published informations found in Section (with tables) ", + "section": "Table_cell: 38-44 Av. Gaston Diderich,", + "color": null, + "positions": [ + { + "rectangle": [ + 171.9, + 136.59999, + 223.25092, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "", + "textAfter": " and 3 Chome", + "startOffset": 3135, + "endOffset": 3184, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "c4581d4469f2ec32d0c28deebd61fdfa" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 26 + }, + { + "id": "3d1dda9b242bc78c4b66b95698570bde", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Manuel", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 39, + 1, + 0 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Paragraph: Manuel, S., Ashley B.,", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 548.2, + 36.624004, + 12.642 + ], + "pageNumber": 17 + } + ], + "textBefore": "", + "textAfter": ", S., Ashley", + "startOffset": 15541, + "endOffset": 15547, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "370a58c9dba6b7f74f74b2d5e230b5bb", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "kawasaki@me.com", + "reason": "Found by Email Regex", + "matchedRule": "PII.1.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 19, + 1, + 1 + ], + "closestHeadline": "PII.1.0/1: Redact Emails by RegEx ", + "section": "Paragraph: The email addresses for", + "color": null, + "positions": [ + { + "rectangle": [ + 171.37602, + 302.5, + 93.99602, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "can always contact ", + "textAfter": ".", + "startOffset": 8323, + "endOffset": 8338, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 13 + }, + { + "id": "ad7aba9300ea14051fc250e34e25deca", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Header Author", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 9, + 0 + ], + "closestHeadline": "CBI.9.1/10.1: Redact all cells with Header Author as CBI Author ", + "section": "Headline: CBI.9.1/10.1: Redact all cells", + "color": null, + "positions": [ + { + "rectangle": [ + 282.42752, + 491.0, + 97.30417, + 13.867801 + ], + "pageNumber": 3 + } + ], + "textBefore": "all cells with ", + "textAfter": " as CBI Author", + "startOffset": 3970, + "endOffset": 3983, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 28 + }, + { + "id": "d425e3cad6539cb4f42ee0a35163ba89", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Michael", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 19, + 2, + 0, + 7 + ], + "closestHeadline": "PII.1.0/1: Redact Emails by RegEx ", + "section": "Table_cell: Michael, Grandfield", + "color": null, + "positions": [ + { + "rectangle": [ + 205.3, + 222.70003, + 34.387527, + 11.81175 + ], + "pageNumber": 6 + } + ], + "textBefore": "", + "textAfter": ", Grandfield", + "startOffset": 8404, + "endOffset": 8411, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 21 + }, + { + "id": "a13811cfa1e3ded12710f7e735f8ca7c", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 46", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 5 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Tel.: +49 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 277.3, + 96.79198, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "551 45 Phone: ", + "textAfter": "", + "startOffset": 11997, + "endOffset": 12015, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "71415dc3c8f4ccb93a85e34a655a87aa", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Redact beween contact and T/el", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 9 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Contact: Redact beween contact", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 125.50003, + 152.97615, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "Contact: ", + "textAfter": " Tel", + "startOffset": 11279, + "endOffset": 11309, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 12 + }, + { + "id": "f12b6f80b18bc3fce83295ea3648fa5b", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Maximilion Pegasus", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 2 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Alternative contact: Maximilion Pegasus", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 484.3, + 98.22002, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "Alternative contact: ", + "textAfter": " European contact: Wilson", + "startOffset": 11674, + "endOffset": 11692, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "e5feba7d434c9cbb8939ea3815cc37da", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "4-6 Chem. des Varennes, 18300 Saint-Satur, France, FR", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 1, + 1 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Paragraph: Warnsveld, 7232 CX Warnsveld,", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 296.6, + 268.17606, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Bourges, France, FR ", + "textAfter": " Lesdo Industries, Chäppelisträssli,", + "startOffset": 761, + "endOffset": 814, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 15 + }, + { + "id": "921ff77f5bcc91a5a344ca5dbb2532c0", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Professor Alexia Ashford", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 1, + 2 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Paragraph: Possible incidents with the", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 514.8, + 121.32002, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "Sergei Vladimir and ", + "textAfter": ". The medicine", + "startOffset": 7764, + "endOffset": 7788, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "8f5451b5b1004d3e18d596d1b9ebbed9", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Richard", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 1 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Name: Nelman Ozbarn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 525.7, + 37.98001, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "109 Contact Point: ", + "textAfter": " Loewe Contact: Julie", + "startOffset": 10707, + "endOffset": 10714, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "24f279f05f1f3a871f4af9a3239d9b07", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "j.jiwoo@collab.co.kr", + "reason": "Found by Email Regex", + "matchedRule": "PII.1.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 19, + 2, + 0, + 5 + ], + "closestHeadline": "PII.1.0/1: Redact Emails by RegEx ", + "section": "Table_cell: j.jiwoo@collab.co.kr", + "color": null, + "positions": [ + { + "rectangle": [ + 389.2, + 242.00002, + 88.619965, + 11.81175 + ], + "pageNumber": 6 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 8376, + "endOffset": 8396, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 19 + }, + { + "id": "af7d7552b9bb2370879f149aa6f4d276", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Mme. Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 504.7, + 60.58799, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13560, + "endOffset": 13571, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "9ab9e97d34c7da69d3743194a3a0e3e5", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 8", + "reason": "Telephone number found by regex", + "matchedRule": "PII.3.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 21, + 2 + ], + "closestHeadline": "PII.3.0/1: Redact telephone numbers by RegEx ", + "section": "Paragraph: The phone number of", + "color": null, + "positions": [ + { + "rectangle": [ + 329.3201, + 451.5, + 93.79202, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "this project are ", + "textAfter": " and +49 (331)", + "startOffset": 8985, + "endOffset": 9002, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "c4581d4469f2ec32d0c28deebd61fdfa", + "type": "published_information", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Spektrum Magazine", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 7, + 2, + 0, + 3 + ], + "closestHeadline": "CBI.7.1: Do not redact Addresses if published informations found in Section (with tables) ", + "section": "Table_cell: Spektrum Magazine", + "color": null, + "positions": [ + { + "rectangle": [ + 75.904, + 136.59999, + 40.7295, + 11.81175 + ], + "pageNumber": 2 + }, + { + "rectangle": [ + 74.3, + 124.500015, + 41.327995, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 3117, + "endOffset": 3134, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 25 + }, + { + "id": "5b3a41eae303b473a9e5d65de0f90d86", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Ranya Eikenboom", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 1, + 1 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Paragraph: David Ksenia Max Mustermann", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 548.6, + 88.992004, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Ksenia Max Mustermann ", + "textAfter": " Charalampos Schenk", + "startOffset": 197, + "endOffset": 212, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "0889505b33bc04ea4adc003d821cfe1e", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Stein", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 10, + 3, + 1 + ], + "closestHeadline": "CBI.11: Recommend all CBI Authors entities in Table with Vertebrate Study Y/N Header ", + "section": "Paragraph: Researcher Carter Stein was", + "color": null, + "positions": [ + { + "rectangle": [ + 146.05602, + 152.6, + 24.587997, + 12.642 + ], + "pageNumber": 3 + } + ], + "textBefore": "Researcher Carter ", + "textAfter": " was responsible for", + "startOffset": 4886, + "endOffset": 4891, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 83 + }, + { + "id": "a867deb67f2237071e0eeb00b43d31c3", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 15", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 583.2, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "551 14 Contact: ", + "textAfter": " Tel.: 0049 331", + "startOffset": 9501, + "endOffset": 9520, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "725880eb6dae4af5e52548271ed9a977", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Melanie", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 11, + 1, + 1 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (1) ", + "section": "Paragraph: The idea of this", + "color": null, + "positions": [ + { + "rectangle": [ + 256.024, + 597.6, + 39.30005, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "transmolecular elements (", + "textAfter": " et al. 1922).", + "startOffset": 5563, + "endOffset": 5570, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "730ab9fc09201e3370b91154dd9ac0a3", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "CTL", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 41, + 1, + 1 + ], + "closestHeadline": "SYN.1.0: Redact addresses that start with BL or CTL ", + "section": "Paragraph: Lorem condimentum BL12345/A LaboratoryA", + "color": null, + "positions": [ + { + "rectangle": [ + 363.208, + 170.79997, + 22.656006, + 12.696 + ], + "pageNumber": 17 + } + ], + "textBefore": "et netus et ", + "textAfter": "/A/9876A LaboratoryB fames", + "startOffset": 16431, + "endOffset": 16434, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 17 + }, + { + "id": "b62b4b7a8f9a778293261e874161915b", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 42", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 5 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Tel.: +49 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 332.5, + 96.79198, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "41 Telephone number: ", + "textAfter": " Telephone No: +49", + "startOffset": 11879, + "endOffset": 11897, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "0da7a4af1dce096c22c669ada0f21206", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 32", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 5 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Tel.: +49 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 346.3, + 96.79198, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "551 31 Tel: ", + "textAfter": "", + "startOffset": 10926, + "endOffset": 10944, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "201cd1fdd31078c092c04112da83f637", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Dr. Sergei Vladimir", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 1, + 2 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Paragraph: Possible incidents with the", + "color": null, + "positions": [ + { + "rectangle": [ + 424.22806, + 528.6, + 94.45206, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "not confirmed by ", + "textAfter": " and Professor Alexia", + "startOffset": 7740, + "endOffset": 7759, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "6fd853aa23c5500df02265c6dccd2a47", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "1129-7 Guwol-dong, Namdong-gu, Incheon, South Korea", + "reason": "Published Information found in row", + "matchedRule": "CBI.7.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 7, + 2, + 0, + 7 + ], + "closestHeadline": "CBI.7.1: Do not redact Addresses if published informations found in Section (with tables) ", + "section": "Table_cell: • • 1129-7 Guwol-dong,", + "color": null, + "positions": [ + { + "rectangle": [ + 171.9, + 106.8, + 242.65494, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "• • ", + "textAfter": " Buikslotermeerplein 13, 1025", + "startOffset": 3270, + "endOffset": 3321, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "75fe6af1507ad1670bcce8237b660618" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 29 + }, + { + "id": "068775d62fa6449f3b1b71e0f30f2e07", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Funnarie B.", + "reason": "Author(s) found", + "matchedRule": "CBI.9.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 8, + 2, + 0, + 11 + ], + "closestHeadline": "CBI.9.0/10.0: Redact all cells with Header Author(s) as CBI Author ", + "section": "Table_cell: Funnarie B.", + "color": null, + "positions": [ + { + "rectangle": [ + 140.0, + 589.6, + 49.581024, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 3679, + "endOffset": 3690, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 14 + }, + { + "id": "05e2ccc877c0557bbfe08c344ff70b91", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Syngenta Ltd.", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 29, + 2 + ], + "closestHeadline": "PII.11.0: Redact On behalf of Sequani Ltd ", + "section": "Paragraph: On behalf of Syngenta", + "color": null, + "positions": [ + { + "rectangle": [ + 123.74799, + 174.70004, + 72.02398, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "On behalf of ", + "textAfter": ": Name: Title", + "startOffset": 13157, + "endOffset": 13170, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 20 + }, + { + "id": "4de3d5e5f8dfed5726dddd5cafecc86a", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Mrs. Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 559.9, + 54.575996, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13438, + "endOffset": 13449, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "e752c726fef881e04583ce5a15354835", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 18", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 541.8, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "17 Telephone number: ", + "textAfter": " Telephone No: 0049", + "startOffset": 9590, + "endOffset": 9609, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "58a3c12211656cc4620e45c8401056d9", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Lucian Terrell", + "reason": "Published Information found in row", + "matchedRule": "CBI.7.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 6, + 1, + 4 + ], + "closestHeadline": "CBI.7.1: Do not redact Names if published informations found in Section (with tables) ", + "section": "Table_cell: Francesco Goodman, Lucian Terrell", + "color": null, + "positions": [ + { + "rectangle": [ + 282.407, + 285.6, + 59.377472, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "Francesco Goodman, ", + "textAfter": " and Shaun Juarez", + "startOffset": 2785, + "endOffset": 2799, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "79fca5c7e5cdf7cc7b6a08e29f7073dd" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 15 + }, + { + "id": "04ee725fc0f787bef7e61455830c5877", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Asya. L.", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 39, + 1, + 0 + ], + "closestHeadline": "AI.0.0: Add all NER Entities of type CBI Authors ", + "section": "Paragraph: Manuel, S., Ashley B.,", + "color": null, + "positions": [ + { + "rectangle": [ + 202.03601, + 534.4, + 40.98001, + 12.642 + ], + "pageNumber": 17 + } + ], + "textBefore": "with Julian, R., ", + "textAfter": ", and Carina,", + "startOffset": 15673, + "endOffset": 15681, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "cdf39941913e6d3fcaa3f8adf170eb8a", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Melanie", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 11, + 1, + 1 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (1) ", + "section": "Paragraph: The idea of this", + "color": null, + "positions": [ + { + "rectangle": [ + 116.776, + 583.8, + 39.300003, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "science Desiree and ", + "textAfter": ", it has", + "startOffset": 5631, + "endOffset": 5638, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "40a88d7765d187dcf6eb4981db2b9586", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Belkov", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 11, + 2, + 0, + 6 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (1) ", + "section": "Table_cell: Belkov et al (1932)", + "color": null, + "positions": [ + { + "rectangle": [ + 321.9, + 535.7, + 34.59604, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "", + "textAfter": " et al (1932)", + "startOffset": 5763, + "endOffset": 5769, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "c49eb3a9e080fe6f73302aaf875cb863", + "type": "CBI_address", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Umbrella Corporation", + "reason": "PERFORMING LABORATORY was found for non vertebrate study", + "matchedRule": "CBI.20.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 8, + 2, + 0, + 24 + ], + "closestHeadline": "CBI.9.0/10.0: Redact all cells with Header Author(s) as CBI Author ", + "section": "Table_cell: Umbrella Corporation", + "color": null, + "positions": [ + { + "rectangle": [ + 459.0, + 530.1, + 92.87256, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 3913, + "endOffset": 3933, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 27 + }, + { + "id": "302c3ed90023fe1c55253a6319479d24", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 464.9, + 32.003994, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "symbols Product-Code: EAK-L443 ", + "textAfter": " 99% ← not", + "startOffset": 14422, + "endOffset": 14429, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "a9762f5d26afa69da0a13e86b15ca582", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Max Mustermann", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 1, + 1, + 1 + ], + "closestHeadline": "CBI.0.0/1: Redact CBI Authors ", + "section": "Paragraph: David Ksenia Max Mustermann", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 562.4, + 85.584, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "David Ksenia ", + "textAfter": " Ranya Eikenboom Charalampos", + "startOffset": 182, + "endOffset": 196, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "c9b6ea58631c6e19f41707f28195f9b9", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "m.grandfield@umbrella.com", + "reason": "Found by Email Regex", + "matchedRule": "PII.1.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 19, + 2, + 0, + 8 + ], + "closestHeadline": "PII.1.0/1: Redact Emails by RegEx ", + "section": "Table_cell: m.grandfield@umbrella.com", + "color": null, + "positions": [ + { + "rectangle": [ + 372.7, + 222.70003, + 121.4534, + 11.81175 + ], + "pageNumber": 6 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 8424, + "endOffset": 8449, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 22 + }, + { + "id": "bce99f5f79daf6175b8e0b0fa01f064d", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "luthor.lex4@mail.com", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 403.8, + 107.67616, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "luthor.lex3@mail.com E-mail address: ", + "textAfter": "", + "startOffset": 9891, + "endOffset": 9911, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "0082488ee3e13a7dbaa6b8a885dc0672", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "ESP Research, C. de Augusto Figueroa, 47, 28004 Madrid, Spain", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 1, + 2 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Paragraph: The medicine is distributed", + "color": null, + "positions": [ + { + "rectangle": [ + 372.0281, + 213.80002, + 141.44406, + 12.642 + ], + "pageNumber": 1 + }, + { + "rectangle": [ + 56.8, + 200.00003, + 168.252, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "South Korea and ", + "textAfter": ".", + "startOffset": 1203, + "endOffset": 1264, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 16 + }, + { + "id": "1e0a7af841d54cebdd2729d5b60251a1", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Ross Hamster", + "reason": "Author(s) found", + "matchedRule": "CBI.9.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 10, + 2, + 0, + 16 + ], + "closestHeadline": "CBI.11: Recommend all CBI Authors entities in Table with Vertebrate Study Y/N Header ", + "section": "Table_cell: Ross Hamster", + "color": null, + "positions": [ + { + "rectangle": [ + 153.6, + 220.59999, + 58.51651, + 11.81175 + ], + "pageNumber": 3 + } + ], + "textBefore": "", + "textAfter": "", + "startOffset": 4734, + "endOffset": 4746, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 73 + }, + { + "id": "b9cce881bae63283a24faf88e189b6d4", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Lane", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 26, + 2, + 1 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Name: Norman Osborn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 567.1, + 24.0, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "7, Alley 26 ", + "textAfter": " 118 Wuxing St,", + "startOffset": 11542, + "endOffset": 11546, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "1362ccd6f71bb50e9c4828cfc23c61b1", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Mme . Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 421.9, + 63.588005, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": ". lorem ipsum", + "startOffset": 13747, + "endOffset": 13759, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "f83b25a36a30ba85931dfdb73a913ecc", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 547.7, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "because additional symbols ", + "textAfter": " =<45% ← should", + "startOffset": 14118, + "endOffset": 14125, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "d2ea837b50505bf13b8c1bc9d179d871", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Ms Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 628.9, + 47.57998, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13290, + "endOffset": 13299, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "f2cbab5cc81aec55185272e0b09ec10a", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Dr. Alan Milwer", + "reason": "AUTHOR(S) was found", + "matchedRule": "CBI.23.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 27, + 4 + ], + "closestHeadline": "PII.9.0/1: Redact between AUTHOR\\(S) and (STUDY) COMPLETION\\ DATE ", + "section": "Paragraph: AUTHOR(S): Dr. Alan Milwer", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 576.1, + 72.30293, + 12.0885 + ], + "pageNumber": 11 + } + ], + "textBefore": "AUTHOR(S): ", + "textAfter": "", + "startOffset": 12461, + "endOffset": 12476, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 5 + }, + { + "id": "be9c22737016a106d1f3232a3fd470c0", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Mme Claire", + "reason": "Expanded PII with salutation prefix", + "matchedRule": "PII.12.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 30, + 1 + ], + "closestHeadline": "PII.12.0: Expand PII entities with salutation prefix ", + "section": "Paragraph: Hello Mrs Claire lorem", + "color": null, + "positions": [ + { + "rectangle": [ + 86.47599, + 573.7, + 57.58799, + 12.642 + ], + "pageNumber": 12 + } + ], + "textBefore": "lorem ipsum Hello ", + "textAfter": " lorem ipsum Hello", + "startOffset": 13409, + "endOffset": 13419, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "3ac11fc988ababcefc911f63edcb29eb", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "sabine.heldt04@mail.com", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 7 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: E-mail: sabine.heldt01@mail.com Email: sabine.heldt02@mail.com", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 194.50003, + 125.67613, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "sabine.heldt03@mail.com E-mail address: ", + "textAfter": "", + "startOffset": 11211, + "endOffset": 11234, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 10 + }, + { + "id": "70c8a0f994452107117f7dd017756a40", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Woody Holland", + "reason": "Published Information found in row", + "matchedRule": "CBI.7.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 6, + 1, + 7 + ], + "closestHeadline": "CBI.7.1: Do not redact Names if published informations found in Section (with tables) ", + "section": "Table_cell: • • • Mike", + "color": null, + "positions": [ + { + "rectangle": [ + 289.1, + 243.70003, + 66.39145, + 11.81175 + ], + "pageNumber": 2 + } + ], + "textBefore": "Herrera Judith Mosley ", + "textAfter": "", + "startOffset": 2869, + "endOffset": 2882, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "bae41fa309d225213410b7b2c4ac6297" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 18 + }, + { + "id": "591fe45b02beaf1bd01994a56869e17e", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "KML", + "reason": "Personal information found", + "matchedRule": "PII.10.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 28, + 1, + 1 + ], + "closestHeadline": "PII.10.0: Redact study director abbreviation ", + "section": "Paragraph: The study was submitted", + "color": null, + "positions": [ + { + "rectangle": [ + 331.6, + 419.3, + 26.699982, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "the abbreviation KATH6764, ", + "textAfter": "5058-12 and KML9201.", + "startOffset": 12810, + "endOffset": 12813, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "6d1c4310fc1a6c4d6469687b974ab13b", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Özgür U. Reyhan", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 1, + 1 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Paragraph: Naka-27 Aomachi, Nomi, Ishikawa", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 597.6, + 84.276, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "Sude Halide Nurullah ", + "textAfter": " B. Rahim C.", + "startOffset": 7616, + "endOffset": 7631, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "3029651d0842a625f2d23f8375c23600", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 14", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 597.0, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "Carrol Ferris No: ", + "textAfter": " Contact: 0049 331", + "startOffset": 9472, + "endOffset": 9491, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "20c8335e3b7d6f145d183d355b098373", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 630.5, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "should be Hint ", + "textAfter": " >45% ← should", + "startOffset": 13869, + "endOffset": 13876, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "29ba0a0d3fe61dbf208df7f921e05467", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Lane", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 25, + 2, + 1 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Name: Nelman Ozbarn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 567.1, + 24.0, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "8, Alley 27 ", + "textAfter": " 119 Yuqing St,", + "startOffset": 10645, + "endOffset": 10649, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "a8e33ec16e372839220c8b4734025dc3", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Yendau District Taiwan 109 Contact Point", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 25, + 2, + 1 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: Name: Nelman Ozbarn Address:", + "color": null, + "positions": [ + { + "rectangle": [ + 254.06801, + 553.3, + 75.01207, + 12.642 + ], + "pageNumber": 9 + }, + { + "rectangle": [ + 200.8, + 539.5, + 56.184006, + 12.642 + ], + "pageNumber": 9 + }, + { + "rectangle": [ + 56.8, + 525.7, + 65.59198, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "119 Yuqing St, ", + "textAfter": ": Richard Loewe", + "startOffset": 10665, + "endOffset": 10705, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "NER" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 4 + }, + { + "id": "3f7a1bc03cfcfdf970970f8cb23a9d16", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Melanie", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 12, + 2 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (2) ", + "section": "Paragraph: Thanks to the persons", + "color": null, + "positions": [ + { + "rectangle": [ + 164.776, + 367.5, + 39.300003, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "to the persons ", + "textAfter": ", Desiree and", + "startOffset": 6089, + "endOffset": 6096, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 19 + }, + { + "id": "919f58f737f19fff87772d7da8d1fd40", + "type": "CBI_author", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Smith", + "reason": "Author found", + "matchedRule": "CBI.0.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 10, + 3, + 1 + ], + "closestHeadline": "CBI.11: Recommend all CBI Authors entities in Table with Vertebrate Study Y/N Header ", + "section": "Paragraph: Researcher Carter Stein was", + "color": null, + "positions": [ + { + "rectangle": [ + 134.76402, + 136.70004, + 28.584, + 12.642 + ], + "pageNumber": 3 + } + ], + "textBefore": "the two researchers ", + "textAfter": " and Ross Hamster.", + "startOffset": 4987, + "endOffset": 4992, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE", + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 83 + }, + { + "id": "f6c21a30428152468076c7e1d3876d18", + "type": "published_information", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Daily Medical", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 5, + 2 + ], + "closestHeadline": "CBI.7.0: Do not redact Addresses if published informations found in Section (without tables) ", + "section": "Paragraph: According to the medical", + "color": null, + "positions": [ + { + "rectangle": [ + 230.34401, + 439.5, + 68.9041, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "the medical magazine ", + "textAfter": ", the medicine", + "startOffset": 2271, + "endOffset": 2284, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "cfeaee7ac8176f05e6af0c62e3cf810c", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "0049 331 441 551 19 Telephone: 0049 331 441 551 20 Phone No. 0049 331 441 551 21 Phone: 0049 331 441 551 22", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 22, + 2 + ], + "closestHeadline": "PII.4.0/1: Redact line after contact information keywords ", + "section": "Paragraph: Contact point: LexCo Contact:", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 528.0, + 101.999985, + 12.642 + ], + "pageNumber": 8 + }, + { + "rectangle": [ + 56.8, + 514.2, + 53.123997, + 12.642 + ], + "pageNumber": 8 + }, + { + "rectangle": [ + 236.8, + 514.2, + 101.999985, + 12.642 + ], + "pageNumber": 8 + }, + { + "rectangle": [ + 56.8, + 500.4, + 50.676006, + 12.642 + ], + "pageNumber": 8 + }, + { + "rectangle": [ + 236.8, + 500.4, + 101.999985, + 12.642 + ], + "pageNumber": 8 + }, + { + "rectangle": [ + 56.8, + 486.6, + 33.312, + 12.642 + ], + "pageNumber": 8 + }, + { + "rectangle": [ + 236.8, + 486.6, + 101.999985, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "18 Telephone No: ", + "textAfter": " Fax number: 0049", + "startOffset": 9624, + "endOffset": 9731, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "8f4d5532b1427da87180d970818bae1e", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity:", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 1 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Test Item: Soda Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 520.1, + 32.687992, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "because additional symbols ", + "textAfter": " 45% aa ←", + "startOffset": 14243, + "endOffset": 14250, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 2 + }, + { + "id": "0d872a42c8f0fe16e87ee9c33acb85fa", + "type": "CBI_author", + "entryType": "RECOMMENDATION", + "state": "SKIPPED", + "value": "Sminko", + "reason": "Author found by \"et al\" regex", + "matchedRule": "CBI.16.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 11, + 3, + 0 + ], + "closestHeadline": "CBI.16.0/1: Add CBI Authors with et al. RegEx (1) ", + "section": "Paragraph: The tests by Belkov", + "color": null, + "positions": [ + { + "rectangle": [ + 312.30405, + 458.4, + 37.284027, + 12.642 + ], + "pageNumber": 4 + } + ], + "textBefore": "the tests by ", + "textAfter": " failed, although this", + "startOffset": 5916, + "endOffset": 5922, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 16 + }, + { + "id": "d81abc0bc2bfbb6dd12c5d03478f4df9", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "sabine.heldt06@mail.com", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 6 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: E-mail: sabine.heldt05@mail.com Email: sabine.heldt06@mail.com", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 235.90005, + 125.67613, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "E-mail: sabine.heldt05@mail.com Email: ", + "textAfter": " e-mail: sabine.heldt07@mail.com E-mail", + "startOffset": 12055, + "endOffset": 12078, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "567ac2dee3ffdc5b1575ac27f50c4c7e", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 (331) 441 551 9", + "reason": "Telephone number found by regex", + "matchedRule": "PII.3.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 21, + 2 + ], + "closestHeadline": "PII.3.0/1: Redact telephone numbers by RegEx ", + "section": "Paragraph: The phone number of", + "color": null, + "positions": [ + { + "rectangle": [ + 446.41614, + 451.5, + 101.68799, + 12.642 + ], + "pageNumber": 7 + } + ], + "textBefore": "551 8 and ", + "textAfter": ". For further", + "startOffset": 9007, + "endOffset": 9026, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "2bed0098151dca4c9556d34bb93740fd", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "2 Imp. Bonne Nouvelle, 75010 Paris, France", + "reason": "Published Information found in section", + "matchedRule": "CBI.7.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 5, + 2 + ], + "closestHeadline": "CBI.7.0: Do not redact Addresses if published informations found in Section (without tables) ", + "section": "Paragraph: According to the medical", + "color": null, + "positions": [ + { + "rectangle": [ + 92.8, + 370.5, + 214.23604, + 12.642 + ], + "pageNumber": 2 + } + ], + "textBefore": "Bogota, Colombia • ", + "textAfter": " • 9-19 Queen", + "startOffset": 2534, + "endOffset": 2576, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [ + "f6c21a30428152468076c7e1d3876d18" + ], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 9 + }, + { + "id": "736852dd3234f298f31fc4e3e2388fca", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Institut Industries, 33 Rue Jean Baffier, 18000 Bourges, France, FR", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 2, + 1, + 1 + ], + "closestHeadline": "CBI.1.0/1: (Do not) Redact CBI Address ", + "section": "Paragraph: Warnsveld, 7232 CX Warnsveld,", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 310.4, + 323.2801, + 12.642 + ], + "pageNumber": 1 + } + ], + "textBefore": "Warnsveld, Netherlands, NL ", + "textAfter": " 4-6 Chem. des", + "startOffset": 693, + "endOffset": 760, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 15 + }, + { + "id": "9b94e089cbc76a4eee06fa358d268015", + "type": "CBI_address", + "entryType": "ENTITY", + "state": "SKIPPED", + "value": "Sequani Ltd", + "reason": "Address found for Non Vertebrate Study", + "matchedRule": "CBI.1.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 29, + 0 + ], + "closestHeadline": "PII.11.0: Redact On behalf of Sequani Ltd ", + "section": "Headline: PII.11.0: Redact On behalf", + "color": null, + "positions": [ + { + "rectangle": [ + 250.22379, + 277.7, + 80.66617, + 13.867801 + ], + "pageNumber": 11 + } + ], + "textBefore": "On behalf of ", + "textAfter": "", + "startOffset": 13014, + "endOffset": 13025, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 18 + }, + { + "id": "f396b56eb912a532f6e3a0481e0e1b9e", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "C. J. Alfred", + "reason": "Personal Information found", + "matchedRule": "PII.0.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 18, + 1, + 1 + ], + "closestHeadline": "PII.0.0/1: Redact all PII ", + "section": "Paragraph: Naka-27 Aomachi, Nomi, Ishikawa", + "color": null, + "positions": [ + { + "rectangle": [ + 56.8, + 570.0, + 55.272007, + 12.642 + ], + "pageNumber": 6 + } + ], + "textBefore": "Reyhan B. Rahim ", + "textAfter": " Xinyi Y. Tao", + "startOffset": 7641, + "endOffset": 7653, + "imageHasTransparency": false, + "dictionaryEntry": true, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "DICTIONARY" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "1e467787361fccbd04781b32dc83ec8d", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Steffanie Soja", + "reason": "Applicant information was found", + "matchedRule": "PII.7.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 25, + 2, + 4 + ], + "closestHeadline": "A.1.1.1 Applicant ", + "section": "Paragraph: No: 993-221 Contact: Steffanie", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 387.7, + 67.38002, + 12.642 + ], + "pageNumber": 9 + } + ], + "textBefore": "No: 993-221 Contact: ", + "textAfter": "", + "startOffset": 10881, + "endOffset": 10895, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 7 + }, + { + "id": "698b8b1766e71c776f099bbdf6641201", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "KATH", + "reason": "Personal information found", + "matchedRule": "PII.10.0", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 28, + 2, + 0, + 3 + ], + "closestHeadline": "PII.10.0: Redact study director abbreviation ", + "section": "Table_cell: KATH11449", + "color": null, + "positions": [ + { + "rectangle": [ + 369.8, + 369.6, + 31.944, + 12.642 + ], + "pageNumber": 11 + } + ], + "textBefore": "", + "textAfter": "11449", + "startOffset": 12941, + "endOffset": 12945, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 13 + }, + { + "id": "929fed77736fc3c45b6ad4d5f676d8bc", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "+49 331 441 551 40", + "reason": "Producer was found", + "matchedRule": "PII.8.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 26, + 2, + 5 + ], + "closestHeadline": "A.1.1.2 Producer of the plant protection ", + "section": "Paragraph: Tel.: +49 331 441", + "color": null, + "positions": [ + { + "rectangle": [ + 200.8, + 360.1, + 96.79198, + 12.642 + ], + "pageNumber": 10 + } + ], + "textBefore": "Tel.: ", + "textAfter": " Tel: +49 331", + "startOffset": 11818, + "endOffset": 11836, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 8 + }, + { + "id": "c65264142eff265dfe864ecd9de806d1", + "type": "hint_only", + "entryType": "HINT", + "state": "SKIPPED", + "value": "Purity", + "reason": "hint only", + "matchedRule": "ETC.0.0", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 31, + 2 + ], + "closestHeadline": "ETC.0.0: Purity Hint ", + "section": "Paragraph: Lorem ipsum dolor Purity:", + "color": null, + "positions": [ + { + "rectangle": [ + 314.2841, + 395.9, + 29.28003, + 12.642 + ], + "pageNumber": 13 + } + ], + "textBefore": "sit amet, consectetur ", + "textAfter": " 12% adipiscing elit,", + "startOffset": 14635, + "endOffset": 14641, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 3 + }, + { + "id": "fa52cbf94affd57fa76f75d3e830f352", + "type": "PII", + "entryType": "ENTITY", + "state": "APPLIED", + "value": "Simon Stagg", + "reason": "Found after \"Alternative contact:\" contact keyword", + "matchedRule": "PII.5.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 23, + 2 + ], + "closestHeadline": "PII.5.0/1: Redact line after contact information keywords reduced ", + "section": "Paragraph: Contact point: Allan Smith", + "color": null, + "positions": [ + { + "rectangle": [ + 236.8, + 272.09998, + 61.65605, + 12.642 + ], + "pageNumber": 8 + } + ], + "textBefore": "Smith Alternative contact: ", + "textAfter": " European contact: Tyler", + "startOffset": 10143, + "endOffset": 10154, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [ + "RULE" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": 6 + }, + { + "id": "70543b364ac57a0afeb0aba6d92ec03e", + "type": "signature", + "entryType": "IMAGE", + "state": "APPLIED", + "value": "Image:Signature", + "reason": "Signature Found", + "matchedRule": "ETC.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 33, + 2 + ], + "closestHeadline": "ETC.3.0/1: Redact Logo ", + "section": "Section: ETC.3.0/1: Redact Logo Redact", + "color": null, + "positions": [ + { + "rectangle": [ + 61.0, + 523.0, + 155.0, + 60.0 + ], + "pageNumber": 14 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "04fabd5e2f755e788580631e73055d63", + "type": "signature", + "entryType": "IMAGE", + "state": "APPLIED", + "value": "Image:Signature", + "reason": "Signature Found", + "matchedRule": "ETC.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 33, + 3 + ], + "closestHeadline": "ETC.3.0/1: Redact Logo ", + "section": "Section: ETC.3.0/1: Redact Logo Redact", + "color": null, + "positions": [ + { + "rectangle": [ + 64.0, + 619.0, + 139.0, + 61.0 + ], + "pageNumber": 14 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "c6df2cf8cca12cad76fa89f5ee0b3214", + "type": "logo", + "entryType": "IMAGE", + "state": "SKIPPED", + "value": "Image:Logo", + "reason": "Logo Found", + "matchedRule": "ETC.3.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 33, + 4 + ], + "closestHeadline": "ETC.3.0/1: Redact Logo ", + "section": "Section: ETC.3.0/1: Redact Logo Redact", + "color": null, + "positions": [ + { + "rectangle": [ + 71.0, + 277.0, + 197.0, + 142.0 + ], + "pageNumber": 14 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "dc9cdd37f8e8a04c97ecbbedf39c94b1", + "type": "logo", + "entryType": "IMAGE", + "state": "SKIPPED", + "value": "Image:Logo", + "reason": "Logo Found", + "matchedRule": "ETC.3.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 33, + 5 + ], + "closestHeadline": "ETC.3.0/1: Redact Logo ", + "section": "Section: ETC.3.0/1: Redact Logo Redact", + "color": null, + "positions": [ + { + "rectangle": [ + 75.0, + 117.0, + 179.0, + 132.0 + ], + "pageNumber": 14 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "30649bfe2beebb6d9f597df7d9822f48", + "type": "logo", + "entryType": "IMAGE", + "state": "SKIPPED", + "value": "Image:Logo", + "reason": "Logo Found", + "matchedRule": "ETC.3.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 33, + 6 + ], + "closestHeadline": "ETC.3.0/1: Redact Logo ", + "section": "Section: ETC.3.0/1: Redact Logo Redact", + "color": null, + "positions": [ + { + "rectangle": [ + 284.0, + 140.0, + 278.0, + 83.0 + ], + "pageNumber": 14 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "33eb79c55f3852656c7a75382f258773", + "type": "signature", + "entryType": "IMAGE", + "state": "APPLIED", + "value": "Image:Signature", + "reason": "Signature Found", + "matchedRule": "ETC.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 33, + 7 + ], + "closestHeadline": "ETC.3.0/1: Redact Logo ", + "section": "Section: ETC.3.0/1: Redact Logo Redact", + "color": null, + "positions": [ + { + "rectangle": [ + 287.0, + 613.0, + 199.0, + 68.0 + ], + "pageNumber": 14 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": true, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "657b681db1be8118ac305b40758effb8", + "type": "signature", + "entryType": "IMAGE", + "state": "APPLIED", + "value": "Image:Signature", + "reason": "Signature Found", + "matchedRule": "ETC.2.1", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 33, + 8 + ], + "closestHeadline": "ETC.3.0/1: Redact Logo ", + "section": "Section: ETC.3.0/1: Redact Logo Redact", + "color": null, + "positions": [ + { + "rectangle": [ + 296.0, + 499.0, + 166.0, + 95.0 + ], + "pageNumber": 14 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "81dea577c7e615375e2a7bd011ad1a6b", + "type": "logo", + "entryType": "IMAGE", + "state": "SKIPPED", + "value": "Image:Logo", + "reason": "Logo Found", + "matchedRule": "ETC.3.1", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 33, + 9 + ], + "closestHeadline": "ETC.3.0/1: Redact Logo ", + "section": "Section: ETC.3.0/1: Redact Logo Redact", + "color": null, + "positions": [ + { + "rectangle": [ + 358.0, + 274.0, + 180.0, + 127.0 + ], + "pageNumber": 14 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "c904d2d6f12000587d864a43b1e0463b", + "type": "formula", + "entryType": "IMAGE_HINT", + "state": "SKIPPED", + "value": "Image:Formula", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 35, + 1 + ], + "closestHeadline": "Images: Formular ", + "section": "Section: Images: Formular", + "color": null, + "positions": [ + { + "rectangle": [ + 58.0, + 295.0, + 154.0, + 153.0 + ], + "pageNumber": 15 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "055adf602b9055a5974fd08ebdde51d4", + "type": "image", + "entryType": "IMAGE_HINT", + "state": "SKIPPED", + "value": "Image:Other", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 35, + 2 + ], + "closestHeadline": "Images: Formular ", + "section": "Section: Images: Formular", + "color": null, + "positions": [ + { + "rectangle": [ + 61.0, + 538.0, + 149.0, + 149.0 + ], + "pageNumber": 15 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "7e9bd7f68ad2842fca019675d532411d", + "type": "image", + "entryType": "IMAGE_HINT", + "state": "SKIPPED", + "value": "Image:Other", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 35, + 3 + ], + "closestHeadline": "Images: Formular ", + "section": "Section: Images: Formular", + "color": null, + "positions": [ + { + "rectangle": [ + 219.0, + 537.0, + 177.0, + 150.0 + ], + "pageNumber": 15 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "259a1a066e2d040458e2b40fa39b32f0", + "type": "formula", + "entryType": "IMAGE_HINT", + "state": "SKIPPED", + "value": "Image:Formula", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 35, + 4 + ], + "closestHeadline": "Images: Formular ", + "section": "Section: Images: Formular", + "color": null, + "positions": [ + { + "rectangle": [ + 240.0, + 298.0, + 144.0, + 115.0 + ], + "pageNumber": 15 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "b6f08fd5e4115d4a25ae4248ac1624ea", + "type": "formula", + "entryType": "IMAGE_HINT", + "state": "SKIPPED", + "value": "Image:Formula", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 35, + 5 + ], + "closestHeadline": "Images: Formular ", + "section": "Section: Images: Formular", + "color": null, + "positions": [ + { + "rectangle": [ + 399.0, + 300.0, + 180.0, + 122.0 + ], + "pageNumber": 15 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "bdfa8e6681dbfba021b30ad414d05997", + "type": "image", + "entryType": "IMAGE_HINT", + "state": "SKIPPED", + "value": "Image:Other", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 35, + 6 + ], + "closestHeadline": "Images: Formular ", + "section": "Section: Images: Formular", + "color": null, + "positions": [ + { + "rectangle": [ + 406.0, + 522.0, + 170.0, + 164.0 + ], + "pageNumber": 15 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "d27f9403a47417980036f5b91962587a", + "type": "image", + "entryType": "IMAGE_HINT", + "state": "APPLIED", + "value": "Image:Other", + "reason": "", + "matchedRule": "", + "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 36, + 1 + ], + "closestHeadline": "Images: Charts ", + "section": "Section: Images: Charts", + "color": null, + "positions": [ + { + "rectangle": [ + 60.0, + 105.0, + 240.0, + 220.0 + ], + "pageNumber": 16 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + }, + { + "analysisNumber": 3, + "type": "CHANGED", + "dateTime": "2024-06-21T11:41:58.444595Z" + } + ], + "manualChanges": [ + { + "manualRedactionType": "FORCE", + "processedDate": null, + "requestedDate": "2024-06-21T11:41:58.444595Z", + "userId": "d1ba7dca-9edc-4ba0-8bcd-5a4d41469d96", + "propertyChanges": { + "legalBasis": "Article 39(e)(2) of Regulation (EC) No 178/2002" + }, + "processed": false + } + ], + "engines": [ + "MANUAL" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "f08249ac98b27b746f8c61c3674433dd", + "type": "image", + "entryType": "IMAGE_HINT", + "state": "SKIPPED", + "value": "Image:Other", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 37, + 1 + ], + "closestHeadline": "Images: Peoples and Faces ", + "section": "Section: Images: Peoples and Faces", + "color": null, + "positions": [ + { + "rectangle": [ + 56.0, + 534.0, + 196.0, + 124.0 + ], + "pageNumber": 16 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "673ba376819e04bbcc495d289e96c376", + "type": "image", + "entryType": "IMAGE_HINT", + "state": "SKIPPED", + "value": "Image:Other", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 37, + 2 + ], + "closestHeadline": "Images: Peoples and Faces ", + "section": "Section: Images: Peoples and Faces", + "color": null, + "positions": [ + { + "rectangle": [ + 126.0, + 397.0, + 200.0, + 112.0 + ], + "pageNumber": 16 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "9d72b85e309e1291cea99cc217057fbb", + "type": "image", + "entryType": "IMAGE_HINT", + "state": "IGNORED", + "value": "Image:Other", + "reason": "forced by manual override", + "matchedRule": "", + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002", + "imported": false, + "containingNodeId": [ + 37, + 3 + ], + "closestHeadline": "Images: Peoples and Faces ", + "section": "Section: Images: Peoples and Faces", + "color": null, + "positions": [ + { + "rectangle": [ + 313.0, + 144.0, + 236.0, + 158.0 + ], + "pageNumber": 16 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + }, + { + "analysisNumber": 2, + "type": "CHANGED", + "dateTime": "2024-06-21T08:28:00.817Z" + }, + { + "analysisNumber": 3, + "type": "REMOVED", + "dateTime": "2024-06-21T11:09:37.029008Z" + } + ], + "manualChanges": [ + { + "manualRedactionType": "FORCE", + "processedDate": "2024-06-21T08:28:00.767Z", + "requestedDate": "2024-06-21T08:27:55.408Z", + "userId": "d1ba7dca-9edc-4ba0-8bcd-5a4d41469d96", + "propertyChanges": { + "legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002" + }, + "processed": true + }, + { + "manualRedactionType": "REMOVE", + "processedDate": null, + "requestedDate": "2024-06-21T11:09:37.029008Z", + "userId": "d1ba7dca-9edc-4ba0-8bcd-5a4d41469d96", + "propertyChanges": {}, + "processed": false + } + ], + "engines": [ + "MANUAL" + ], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 1, + "paragraphPageIdx": -1 + }, + { + "id": "160bad5c2d4b15e26813e55384cfc9e8", + "type": "image", + "entryType": "IMAGE_HINT", + "state": "SKIPPED", + "value": "Image:Other", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 37, + 4 + ], + "closestHeadline": "Images: Peoples and Faces ", + "section": "Section: Images: Peoples and Faces", + "color": null, + "positions": [ + { + "rectangle": [ + 342.0, + 524.0, + 167.0, + 138.0 + ], + "pageNumber": 16 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + }, + { + "id": "55d2a41a4afb5f792a6f7fb03681675c", + "type": "image", + "entryType": "IMAGE_HINT", + "state": "SKIPPED", + "value": "Image:Other", + "reason": "", + "matchedRule": "", + "legalBasis": "", + "imported": false, + "containingNodeId": [ + 41, + 2, + 23 + ], + "closestHeadline": "Manual Redaction Test ", + "section": "Section: Manual Redaction Test ---------------------------------------------------------------------------------------------------------------------", + "color": null, + "positions": [ + { + "rectangle": [ + 376.0, + 577.0, + 170.0, + 102.0 + ], + "pageNumber": 19 + } + ], + "textBefore": null, + "textAfter": null, + "startOffset": 0, + "endOffset": 0, + "imageHasTransparency": false, + "dictionaryEntry": false, + "dossierDictionaryEntry": false, + "excluded": false, + "changes": [ + { + "analysisNumber": 1, + "type": "ADDED", + "dateTime": "2024-06-21T07:20:39.55Z" + } + ], + "manualChanges": [], + "engines": [], + "reference": [], + "importedRedactionIntersections": [], + "numberOfComments": 0, + "paragraphPageIdx": -1 + } + ], + "legalBasis": [ + { + "name": "1.1 personal data (incl. geolocation); Article 39(e)(3)", + "description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)", + "reason": "Article 39(e)(3) of Regulation (EC) No 178/2002" + }, + { + "name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)", + "description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information", + "reason": "Article 39(e)(2) of Regulation (EC) No 178/2002" + }, + { + "name": "2. manufacturing or production process", + "description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety", + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" + }, + { + "name": "3. links between a producer and applicant", + "description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable", + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" + }, + { + "name": "4. commercial information", + "description": "commercial information revealing sourcing, market shares or business strategy of the applicant", + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" + }, + { + "name": "5. quantitative composition", + "description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety", + "reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)" + }, + { + "name": "6. specification of impurity", + "description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities", + "reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009" + }, + { + "name": "7. results of production batches", + "description": "results of production batches of the active substance including impurities", + "reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009" + }, + { + "name": "8. composition of a plant protection product", + "description": "information on the complete composition of a plant protection product", + "reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009" + } + ], + "dictionaryVersion": 20, + "dossierDictionaryVersion": 15, + "rulesVersion": 7, + "legalBasisVersion": 2 +} \ No newline at end of file diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/templates/Excel QC (incl. Skipped Redactions).xlsx b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/templates/Excel QC (incl. Skipped Redactions).xlsx index 075d7b7..880779f 100644 Binary files a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/templates/Excel QC (incl. Skipped Redactions).xlsx and b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/templates/Excel QC (incl. Skipped Redactions).xlsx differ